-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.25 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.25 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
{
"name": "hiproxy-conf-parser",
"version": "1.0.8",
"description": "hiproxy rewrite config file parser",
"main": "src/index.js",
"scripts": {
"test": "export NPM_TEST=true && nyc mocha test/**/*.test.js --timeout 5000",
"report": "npm test && nyc report --reporter=lcov --reporter=html",
"semistandard": "semistandard",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hiproxy/conf-parser.git"
},
"keywords": [
"hiproxy",
"config",
"rewrite",
"parser"
],
"dependencies": {
"colors": "^1.1.2"
},
"devDependencies": {
"codecov": "^2.3.0",
"ghooks": "^2.0.0",
"mocha": "^3.2.0",
"nyc": "^10.3.2",
"semistandard": "^10.0.0"
},
"config": {
"ghooks": {
"pre-commit": "npm run semistandard",
"pre-push": "npm test"
}
},
"author": "zdying",
"license": "MIT",
"bugs": {
"url": "https://github.com/hiproxy/conf-parser/issues"
},
"homepage": "https://github.com/hiproxy/conf-parser#readme",
"semistandard": {
"globals": [
"log",
"args",
"it",
"describe",
"beforeEach",
"afterEach",
"before",
"after"
]
}
}