-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.59 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
{
"name": "qrate-protocol",
"version": "0.0.1",
"description": "A Backfeed Protocol for QRate",
"main": "src/index.js",
"scripts": {
"commit": "git-cz",
"test": "istanbul cover -x *.test.js _mocha -- -R spec src/*.test.js",
"test:index": "mocha src/index.test.js -w",
"test:protocol": "mocha src/protocol.test.js -w",
"test:protocolCI": "mocha src/protocol.test.js",
"test:factory": "mocha src/factory.test.js -w",
"test:db": "mocha src/db.test.js -w",
"check-coverage": "istanbul check-coverage --statements 20 --branches 20 --functions 20 --lines 20",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"start": "npm run test",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/backfeed/qrate-protocol"
},
"keywords": [
"backfeed",
"protocol"
],
"author": "Backfeed Team",
"license": "GPL",
"bugs": {
"url": "https://github.com/backfeed/qrate-protocol/issues"
},
"homepage": "https://github.com/backfeed/qrate-protocol#readme",
"dependencies": {
"lodash": "3.10.1",
"mathjs": "2.4.2"
},
"devDependencies": {
"chai": "3.4.0",
"codecov.io": "0.1.6",
"commitizen": "2.4.6",
"cz-conventional-changelog": "1.1.4",
"ghooks": "1.0.0",
"istanbul": "0.4.0",
"mocha": "2.3.3",
"mockjs": "*",
"output-file": "1.1.1"
},
"czConfig": {
"path": "node_modules/cz-conventional-changelog"
},
"config": {
"ghooks": {
"pre-commit": "npm run test && npm run check-coverage"
}
}
}