-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
54 lines (54 loc) · 1.48 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
52
53
54
{
"name": "douban-info-for-pt",
"version": "1.7.6",
"description": "在PT站电影详情页展示部分中文信息",
"main": "index.js",
"repository": "[email protected]:techmovie/DouBan-Info-for-PT.git",
"author": "birdplane",
"license": "MIT",
"scripts": {
"build": "node scripts/build.js",
"dev": "node scripts/dev.js",
"commit": "git-cz",
"release": "node scripts/release.js",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"postinstall": "husky install"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "lint-staged"
}
},
"lint-staged": {
"src/**/*.js": "eslint --max-warnings 0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@jsdevtools/version-bump-prompt": "^6.1.0",
"@types/jquery": "^3.5.5",
"chalk": "^4.1.0",
"chokidar": "^3.5.1",
"commitizen": "^4.2.3",
"conventional-changelog-cli": "^2.1.1",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.8.38",
"eslint": "^7.18.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"execa": "^5.0.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.3",
"node-notifier": "^9.0.1",
"ora": "^5.4.0",
"yaml": "^1.10.0"
}
}