forked from nlplab/brat
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
52 lines (52 loc) · 2.01 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
{
"name": "brat-frontend-editor",
"version": "0.3.36",
"description": "\"BRAT Editor standalone frontend library\"",
"main": "index.js",
"scripts": {
"start": "npm run prepublish && http-server -p 3001",
"babel-build": "babel --presets es2015 -d client/dist/ client/src/",
"babel-unstrict": "babel --plugins transform-remove-strict-mode dist/brat-frontend-editor.js > dist/brat-frontend-editor.unstrict.js",
"babelify-build": "browserify --debug index.js -o dist/brat-frontend-editor.js -t [ babelify --presets [ es2015 ] --compact true ] && npm run babel-unstrict",
"browserify-build": "browserify --debug index.js -o dist/brat-frontend-editor.js -t [ stringify --extensions [.html] ] ",
"browserify-css": "browserify --debug index-css.js -o dist/brat-frontend-editor-css.js -t [ browserify-css --autoInject=true --minify=true ]",
"cleancss": "cleancss -o dist/brat-frontend-editor.min.css index.css",
"minify": "browserify dist/brat-frontend-editor.js -d -p [minifyify --no-map] > dist/brat-frontend-editor.min.js",
"prepublish": "npm run browserify-build && npm run cleancss"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crim-ca/brat-frontend-editor.git"
},
"keywords": [
"brat",
"editor",
"frontend",
"annotation",
"text"
],
"author": "Renaud Hebert-Legault <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/crim-ca/brat-frontend-editor/issues"
},
"homepage": "https://github.com/crim-ca/brat-frontend-editor#readme",
"dependencies": {
"browserify-css": "^0.9.2",
"headjs": "^1.0.3",
"jquery-bbq": "0.0.1",
"jquery1-7-1": "^1.0.0",
"sprintf-js": "^1.0.3"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-plugin-transform-remove-strict-mode": "0.0.2",
"babel-preset-es2015": "^6.9.0",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"clean-css": "^3.4.18",
"http-server": "^0.9.0",
"minifyify": "^7.3.3",
"stringify": "^5.1.0"
}
}