-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.28 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.28 KB
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
{
"name": "node-huaban",
"version": "1.4.0",
"description": "huaban(huaban.com) board downloader",
"main": "lib/index.js",
"scripts": {
"format": "prettier --write lib/**/*.js bin/*",
"test": "echo 'test not written'; exit 1"
},
"bin": {
"huaban": "bin/huaban"
},
"repository": {
"type": "git",
"url": "git+https://github.com/magicdawn/node-huaban.git"
},
"keywords": [
"huaban",
"downloader"
],
"author": "magicdawn",
"license": "MIT",
"bugs": {
"url": "https://github.com/magicdawn/node-huaban/issues"
},
"homepage": "https://github.com/magicdawn/node-huaban#readme",
"dependencies": {
"chalk": "^2.3.1",
"debug": "^3.1.0",
"fs-extra": "^5.0.0",
"lodash": "^4.17.5",
"log-reject-error": "^0.0.2",
"log-symbols": "^2.2.0",
"mime": "^2.2.0",
"minimist": "^1.2.0",
"promise.map": "^0.0.2",
"promise.retry": "^0.1.0",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"sanitize-filename": "^1.6.1"
},
"engines": {
"node": ">=7.6.0"
},
"devDependencies": {
"eslint": "^4.18.1",
"husky": "^0.15.0-rc.13",
"prettier": "^1.11.1"
},
"files": [
"lib",
"bin"
],
"husky": {
"hooks": {
"pre-commit": "npm run format && git add lib/*.js bin"
}
}
}