-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.19 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
{
"name": "qdd",
"version": "1.5.0",
"description": "Download Javascript dependencies",
"main": "index.js",
"scripts": {
"test": "semistandard && node test",
"coverage": "nyc --reporter=html node test",
"test-ci": "npm run coverage && nyc report --reporter=text-lcov | coveralls",
"bench": "node bench"
},
"bin": {
"qdd": "./index.js",
"qdd-node": "./qdd-node.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bengl/qdd.git"
},
"keywords": [
"install",
"package",
"module"
],
"author": "Bryan English <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bengl/qdd/issues"
},
"homepage": "https://github.com/bengl/qdd#readme",
"files": [
"index.js",
"qdd-loader.js",
"qdd-node.js",
"lib/*.js"
],
"engines": {
"node": ">=8.5.0"
},
"nyc": {
"exclude": [
"qdd-loader.js",
"qdd-node.js"
]
},
"devDependencies": {
"coveralls": "^3.0.2",
"npm": "^6.4.1",
"nyc": "^13.0.1",
"pitesti": "^2.3.0",
"semistandard": "^12.0.1",
"yarn": "^1.9.4"
},
"dependencies": {
"qdownload": "^1.1.0",
"qfastfs": "^1.0.1"
}
}