-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.57 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
{
"name": "cwrc-basic-delegator",
"version": "0.0.0-development",
"description": "NPM module to which the CWRC-Writer delegates server side calls for file creation, retrieval, and update; entity lookups; schema retrieval; xml validation; template loading",
"main": "index.js",
"scripts": {
"commit": "git-cz",
"check-coverage": "istanbul check-coverage --statements 20 --branches 0 --functions 20 --lines 20",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"test": "mocha spec -w",
"test:single": "istanbul cover -x *.test.js _mocha -- -R spec spec",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/jchartrand/CWRC-BasicDelegator.git"
},
"keywords": [
"xml",
"edit"
],
"author": "“James <“[email protected]”> (http://openskysolutions.ca)",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/jchartrand/CWRC-BasicDelegator/issues"
},
"homepage": "https://github.com/jchartrand/CWRC-BasicDelegator#readme",
"devDependencies": {
"chai": "3.5.0",
"codecov.io": "0.1.6",
"commitizen": "2.9.5",
"cz-conventional-changelog": "1.2.0",
"ghooks": "2.0.0",
"istanbul": "0.4.5",
"mocha": "3.2.0",
"semantic-release": "^6.3.2"
},
"czConfig": {
"path": "node_modules/cz-conventional-changelog"
},
"config": {
"ghooks": {
"pre-commit": "npm run test:single && npm run check-coverage"
}
},
"dependencies": {
"jquery": "3.1.1",
"octokit": "0.10.4"
}
}