This repository has been archived by the owner on Jul 31, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.82 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "cwrc-git-server-client",
"version": "0.0.0-development",
"description": "Client for calls to the CWRC-GitServer from CWRC-GitDelegator in CWRC-GitWriter.",
"main": "src/index.js",
"scripts": {
"cm": "git-cz",
"check-coverage": "nyc check-coverage",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"view-coverage": "nyc report --reporter=lcov",
"test-nocoverage": "mocha spec",
"test": "nyc mocha spec",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"repository": {
"type": "git",
"url": "https://github.com/cwrc/CWRC-GitServerClient.git"
},
"keywords": [
"xml",
"rdf",
"editor",
"github"
],
"author": "“James <“jc.chartrand@gmail.com”>",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/cwrc/CWRC-GitServerClient/issues"
},
"homepage": "https://github.com/cwrc/CWRC-GitServerClient#readme",
"dependencies": {
"js-cookie": "^2.2.0"
},
"devDependencies": {
"chai": "3.5.0",
"codecov": "^3.5.0",
"commitizen": "^3.1.1",
"cz-conventional-changelog": "^2.1.0",
"husky": "^2.4.1",
"jquery": "^3.4.1",
"mocha": "^5.2.0",
"nock": "^9.6.1",
"nyc": "^14.1.1",
"request": "^2.88.0",
"semantic-release": "^15.13.16",
"travis-deploy-once": "^5.0.11"
},
"husky": {
"hooks": {
"pre-commit": "npm run test && npm run check-coverage"
}
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"nyc": {
"check-coverage": true,
"per-file": true,
"exclude": [
"coverage/**",
"fixturesAndMocks/**",
"node_modules/**",
"spec/**"
],
"lines": 5,
"statements": 5,
"functions": 0,
"branches": 0,
"reporter": [
"lcov"
]
}
}