-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.07 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "readinglist-js",
"version": "2.0.0-alpha.5",
"description": "A static site generator for your reading list",
"main": "src/index.js",
"author": "Joshua Tompkins <[email protected]>",
"license": "MIT",
"devDependencies": {
"cheerio": "^1.0.0-rc.12",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"jest": "^29.6.1",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0"
},
"dependencies": {
"colors": "^1.4.0",
"commander": "^11.0.0",
"figlet": "^1.6.0",
"joi": "^17.9.2",
"pug": "^3.0.2"
},
"type": "module",
"scripts": {
"test": "node --experimental-vm-modules $(yarn bin jest)",
"format": "prettier --write \"src/**/*.js\"",
"verify": "yarn format && yarn test",
"prepare": "husky install",
"sample": "node src/index.js -b ./test/sample-books-file.json -o ./test/build"
},
"preferGlobal": true,
"bin": {
"reading-list": "src/index.js"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}