-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.67 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
41
42
43
44
45
46
47
48
49
50
51
{
"name": "ruperts-extensions",
"version": "1.0.0",
"description": "Rupert's Paperback Extensions",
"author": "Rupert",
"license": "MIT",
"repositoryName": "Rupert's Paperback Extensions",
"repository": {
"type": "git",
"url": "git@github.com:IntermittentlyRupert/paperback-extensions.git"
},
"scripts": {
"bundle": "paperback bundle",
"serve": "paperback serve -p 8000",
"lint": "npm run lint:prettier && npm run lint:eslint && npm run lint:types",
"lint:prettier": "prettier --check .",
"lint:eslint": "eslint --max-warnings 0 .",
"lint:types": "tsc --noEmit",
"lint:fix": "eslint --max-warnings 0 --fix . && prettier --write .",
"test": "cross-env TZ=UTC jest --passWithNoTests",
"test:coverage": "cross-env TZ=UTC jest --collectCoverage",
"prepare": "husky install"
},
"dependencies": {
"cheerio": "^1.0.0-rc.10",
"paperback-extensions-common": "^5.0.0-alpha.7"
},
"devDependencies": {
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@commitlint/config-conventional": "^16.2.1",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"commitlint": "^16.2.3",
"cross-env": "^7.0.3",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-security": "^1.5.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"jest-extended": "^2.0.0",
"paperback-cli": "^2.0.0-alpha.13",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"typescript": "^4.6.3"
}
}