-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.51 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
{
"name": "cwrc-charon-dialogs",
"version": "0.0.1-development",
"description": "Dialogs for listing, loading, and saving CWRC XML documents.",
"repository": {
"type": "git",
"url": "https://github.com/NEU-Libraries/cwrc-charon-dialogs.git"
},
"keywords": [
"cwrc",
"github",
"xml",
"annotation"
],
"bugs": {
"url": "https://github.com/cwrc/cwrc-git-dialogs/issues"
},
"homepage": "https://github.com/cwrc/cwrc-git-dialogs#readme",
"author": "“James <“[email protected]”>",
"license": "GPL-2.0",
"main": "src/index.js",
"scripts": {
"semantic-release": "semantic-release",
"cm": "git-cz",
"precommit": "npm run test && npm run check-coverage",
"browserify": "mkdirp build && 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 ] ]",
"test": "mkdirp coverage && npm run test:electron && npm run 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 ",
"generate-coverage": "istanbul report --root coverage lcov",
"check-coverage": "istanbul check-coverage --statements 0 --branches 0 --functions 0 --lines 0",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"travis-deploy-once": "travis-deploy-once"
},
"devDependencies": {
"babel-preset-es2015": "6.24.1",
"babelify": "7.3.0",
"browser-run": "^5.0.0",
"browserify": "14.3.0",
"browserify-istanbul": "2.0.0",
"codecov": "^3.0.2",
"commitizen": "2.9.6",
"concat-stream": "1.6.0",
"cz-conventional-changelog": "2.0.0",
"faucet": "0.0.1",
"husky": "0.13.3",
"istanbul": "0.4.5",
"mkdirp": "0.5.1",
"semantic-release": "^15.1.4",
"sinon": "2.2.0",
"tape": "4.6.3",
"travis-deploy-once": "^4.4.1",
"watch": "1.0.2",
"watchify": "3.9.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"bootstrap": "3.3.7",
"github": "9.2.0",
"jquery": "3.2.1",
"js-cookie": "2.1.4"
}
}