-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.45 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
{
"name": "ACID-RESTful-OA",
"version": "0.2.0",
"description": "Test suite webapp for RESTful OA / JSON-LD servers",
"author": "Juan Miguel Cejuela",
"license": "ISC",
"keywords": [
"RESTful",
"OpenAnnotation",
"JSON-LD"
],
"main": "server/main.js",
"repository": {
"type": "git",
"url": "https://github.com/restful-open-annotation/ACID-RESTful-OA.git"
},
"engines": {
"node": "8.2.0"
},
"dependencies": {
"body-parser": "^1.12.2",
"bootstrap": "^3.3.4",
"express": "^4.12.3",
"jquery": "^2.1.3",
"lodash": "^3.5.0",
"react": "^0.13.1",
"react-loader": "^1.2.0",
"request": "^2.53.0",
"tv4": "^1.1.8"
},
"devDependencies": {
"browserify": "latest",
"esprima-fb": "12001.1.0-dev-harmony-fb",
"jscs": "latest",
"jshint": "latest",
"jsxhint": "latest",
"minifyify": "latest",
"reactify": "^1.1.0",
"watchify": "latest"
},
"browserify": {
"transform": [
[
"reactify",
{
"es6": true
}
]
]
},
"scripts": {
"client-build": "browserify client.js | uglifyjs -c > public/dist/bundle.min.js",
"client-watch": "watchify client.js -o public/dist/bundle.min.js",
"build": "npm run client-build",
"server-watch": "runjs server/main.js",
"watch": "npm run server-watch & npm run client-watch",
"start": "node server/main.js",
"test": "echo \"Error: no test specified\" && exit 1"
}
}