-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.14 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
{
"name": "step-flow",
"version": "1.1.1",
"description": "step flow",
"main": "lib/flow.js",
"scripts": {
"doc": "jsdoc2md lib/*.js",
"test": "nyc mocha test/*.js",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"report": "npm test && nyc report --reporter=lcov --reporter=html",
"semistandard": "semistandard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hiproxy/step-flow.git"
},
"keywords": [
"step",
"flow"
],
"author": "zdying",
"license": "MIT",
"bugs": {
"url": "https://github.com/hiproxy/step-flow/issues"
},
"homepage": "https://github.com/hiproxy/step-flow#readme",
"devDependencies": {
"codecov": "^2.2.0",
"ghooks": "^2.0.0",
"mocha": "^3.4.2",
"nyc": "^10.2.0",
"semistandard": "^11.0.0"
},
"config": {
"ghooks": {
"pre-commit": "npm run semistandard",
"pre-push": "npm test"
}
},
"semistandard": {
"globals": [
"it",
"describe",
"beforeEach",
"afterEach",
"before",
"after"
],
"ignore": [
"/test/",
"example.js"
]
}
}