-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 883 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 883 Bytes
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
{
"name": "node-pac",
"version": "0.4.0",
"description": "Node版pac脚本解析器",
"scripts": {
"test": "mocha test/index.test.js test/units -R spec -t 5000",
"lint": "eslint ./lib *.js",
"lintfix": "eslint --fix ./lib *.js",
"cov": "istanbul cover _mocha -- test/index.test.js test/units -R spec -t 5000"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/imweb/node-pac.git"
},
"keywords": [
"pac",
"node"
],
"author": "avenwu <avwu@qq.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/imweb/node-pac/issues"
},
"homepage": "https://github.com/imweb/node-pac#node-pac",
"dependencies": {
"netmask": "^1.0.6"
},
"engines": {
"node": ">= 0.10.0"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^2.8.0",
"istanbul": "^0.4.5",
"mocha": "^3.0.2"
}
}