-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
61 lines (61 loc) · 1.49 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
55
56
57
58
59
60
61
{
"name": "zhihu-zhuanlan",
"version": "0.4.1",
"description": "知乎专栏爬虫",
"main": "index.js",
"author": "bubao",
"license": "MIT",
"scripts": {
"lint": "eslint . --ext .js --fix",
"test": "node test/zhuanlan.js"
},
"dependencies": {
"filenamify": "^4.1.0",
"lodash": "^4.17.20",
"turndown": "^5.0.3",
"zhihu-api": "git+https://github.com/bubao/zhihu-api.git#v0.2.1"
},
"husky": {
"hooks": {
"pre-commit": "echo 'husky' && npm run lint",
"pre-push": "echo 'husky' && npm run lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "config/cz-config.js"
}
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"commitizen": "^4.2.1",
"cz-customizable": "^6.3.0",
"eslint": "^7.9.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.3.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bubao/zhihu-zhuanlan.git"
},
"keywords": [
"zhihu",
"zhuanlan"
],
"bugs": {
"url": "https://github.com/bubao/zhihu-zhuanlan/issues"
},
"homepage": "https://github.com/bubao/zhihu-zhuanlan#readme"
}