-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.2 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.2 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
{
"name": "songhua",
"version": "1.1.2",
"description": "Node.js Stream utility tools.",
"main": "index.js",
"scripts": {
"test": "node ./node_modules/mocha/bin/_mocha -u exports -R spec test.js",
"test:watch": "node ./node_modules/mocha/bin/_mocha test.js -w",
"test:report": "nyc --cache npm test && nyc report --reporter=html",
"test:browser": "npm run test:report && open coverage/index.html",
"pre-release": "npm run test:report && standard-version"
},
"repository": {
"type": "git",
"url": "https://github.com/RonWang/Songhua.git"
},
"keywords": [
"nodejs",
"stream",
"parallel"
],
"author": "RonWang",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"chai": "^3.5.0",
"coveralls": "^3.0.2",
"husky": "^3.0.8",
"mocha": "^3.2.0",
"nyc": "^13.3.0",
"sinon": "^6.0.0",
"standard-version": "^7.0.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm run pre-release"
}
},
"nyc": {
"check-coverage": true,
"lines": 10,
"statements": 10,
"functions": 10,
"branches": 10
}
}