-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.75 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
77
{
"name": "cwrc-git-delegator",
"version": "0.0.0-development",
"description": "Delegator to which CWRC-GitWriter delegates server-side calls.",
"main": "src/index.js",
"scripts": {
"commit": "git-cz",
"check-coverage": "istanbul check-coverage --statements 0 --branches 0 --functions 0 --lines 0",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"generate-coverage": "istanbul report --root coverage lcov",
"test": "",
"test:single": "npm run test:electron && npm generate-coverage",
"test:browser": "browserify -t browserify-istanbul test/browser.js | browser-run -p 2222 --static . | node test/extract-coverage.js | faucet",
"test:electron": "browserify -t browserify-istanbul test/browser.js | browser-run --static . | node test/extract-coverage.js | faucet ",
"test:chrome": "browserify -t browserify-istanbul test/browser.js | browser-run --static . -b chrome | node test/extract-coverage.js | faucet ",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"browserify": "browserify test/development.js -o build/development.js --debug -t [ babelify --presets [ es2015 ] ]",
"watch": "watchify test/development.js -o build/development.js --debug --verbose -t [ babelify --presets [ es2015 ] ]",
"watch:browser": "watch 'clear && npm run -s test:browser' test src"
},
"repository": {
"type": "git",
"url": "https://github.com/jchartrand/CWRC-GitDelegator.git"
},
"keywords": [
"xml",
"rdf",
"editor",
"github"
],
"author": "“James <“[email protected]”> (http://openskysolutions.ca)",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/jchartrand/CWRC-GitDelegator/issues"
},
"homepage": "https://github.com/jchartrand/CWRC-GitDelegator#readme",
"dependencies": {
"babel-preset-es2015": "6.24.1",
"babelify": "7.3.0",
"bootstrap": "3.3.7",
"bootstrap-select": "1.12.2",
"cwrc-git-server-client": "1.3.0",
"cwrcgit": "1.1.0",
"github": "8.1.1",
"jquery": "3.1.0",
"js-cookie": "2.1.3",
"octokit": "0.10.4"
},
"devDependencies": {
"babel-preset-es2015": "6.24.1",
"babelify": "7.3.0",
"browserify": "14.1.0",
"browserify-istanbul": "2.0.0",
"chai": "3.5.0",
"codecov.io": "0.1.6",
"commitizen": "2.9.5",
"concat-stream": "1.6.0",
"coverify": "1.4.1",
"cz-conventional-changelog": "1.2.0",
"faucet": "0.0.1",
"ghooks": "2.0.0",
"istanbul": "0.4.5",
"jsdom": "10.1.0",
"mocha": "3.2.0",
"nock": "9.0.2",
"semantic-release": "^6.3.2",
"sinon": "2.2.0",
"tape": "4.6.3",
"watch": "1.0.2",
"watchify": "3.9.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}