-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.31 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
{
"name": "cwrc-charon-writer",
"version": "0.0.0",
"description": "xml editing and rdf annotation using Charon as the document store",
"repository": {
"type": "git",
"url": "https://github.com/NEU-Libraries/CWRC-CharonWriter.git"
},
"keywords": [
"xml",
"rdf",
"editor",
"annotation"
],
"contributors": [
"Andrew MacDonald",
"James Chartrand"
],
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/NEU-Libraries/CWRC-CharonWriter/issues"
},
"homepage": "https://github.com/NEU-Libraries/CWRC-CharonWriter#readme",
"scripts": {
"build": "npm run clean && npm run copyfiles && npm run build:js",
"clean": "rimraf build",
"cm": "git-cz",
"copyfiles": "npm run copy:images && npm run copy:css && npm run copy:html && npm run copy:xml",
"copy:images": "copyfiles -u 3 \"node_modules/cwrc-writer-base/src/img/**/*\" build/",
"copy:css": "copyfiles -u 3 \"node_modules/cwrc-writer-base/src/css/**/*\" build/",
"copy:html": "copyfiles -u 3 \"node_modules/cwrc-writer-base/src/html/*\" build/ && copyfiles -f src/html/index.html build/",
"copy:xml": "copyfiles -u 5 \"node_modules/cwrc-writer-base/src/js/schema/*/xml/*\" build/schema/",
"build:js": "mkdirp build/js && browserify src/js/app.js -o build/js/app.js --debug --verbose -g deamdify -t [ babelify --presets [ es2015 ] ]",
"watch": "watchify src/js/app.js --debug -o build/js/app.js --verbose -g deamdify -t [ babelify --presets [ es2015 ] ]"
},
"dependencies": {
"cwrc-writer-base": "2.18.0",
"cwrc-charon-dialogs": "file:///Users/nakatomi/Projects/Vagrant/cwrc-charon-dialogs",
"cwrc-public-entity-dialogs": "^1.2.8",
"dbpedia-entity-lookup": "^0.3.0",
"geonames-entity-lookup": "^1.1.2",
"getty-entity-lookup": "^1.4.1",
"viaf-entity-lookup": "^1.2.2",
"wikidata-entity-lookup": "^1.2.2"
},
"devDependencies": {
"babel-preset-es2015": "6.22.0",
"babelify": "7.3.0",
"browserify": "^13.0.1",
"commitizen": "^2.9.6",
"copyfiles": "^1.0.0",
"cz-conventional-changelog": "^2.1.0",
"deamdify": "0.3.0",
"minifier": "^0.8.0",
"minifyify": "^7.3.3",
"mkdirp": "^0.5.1",
"rimraf": "^2.5.4",
"watchify": "^3.7.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}