-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.13 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
{
"name": "qiniu-upload-tool",
"version": "2.2.3",
"description": "qiniu-upload using nodejs",
"main": "./bin/index.js",
"keywords": [
"qiniu-upload using nodejs",
"qinniu-upload-tool"
],
"scripts": {
"test": "mocha",
"lint": "./node_modules/.bin/eslint ./ --fix",
"precommit": "npm run lint && pretty-quick --staged",
"cover": "istanbul cover --report lcov node_modules/mocha/bin/_mocha -- -R spec test/*.js"
},
"bin": {
"qiniu-upload": "./bin/index.js"
},
"author": "fengzi2016",
"license": "ISC",
"dependencies": {
"chalk": "^2.4.1",
"commander": "^2.15.1",
"mime": "^2.4.0",
"path": "^0.12.7",
"progress": "^2.0.0",
"qiniu": "^7.2.0"
},
"devDependencies": {
"coveralls": "^3.0.2",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.9.1",
"husky-hg": "^0.15.2",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"prettier": "^1.13.7",
"pretty-quick": "^1.6.0",
"should": "^13.2.3"
}
}