This repository has been archived by the owner on Jan 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
79 lines (79 loc) · 2.2 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
78
79
{
"name": "oada-api-server",
"version": "0.0.0",
"description": "Implementation of OADA API in node.js",
"main": "main.js",
"scripts": {
"cover": "istanbul cover _mocha",
"lint": "jshint --reporter node_modules/jshint-stylish/stylish.js .",
"style": "jscs .",
"clean": "rm -rf ./coverage",
"test": "mocha --recursive --colors test | bunyan -o short",
"test-memdb": "mocha --colors test/memory-db.js | bunyan -o short",
"test-all": "mocha --colors test | bunyan -o short",
"test-watch": "mocha --recursive -w --colors test | bunyan -o short",
"start": "node main.js | bunyan -o short",
"start-watch": "forever -w --watchDirectory . main.js | bunyan -o short"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/OADA/oada-api-server.git"
},
"keywords": [
"oada"
],
"author": {
"name": "Aaron Ault",
"email": "[email protected]",
"url": "http://openag.io"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/OADA/oada-api-server/issues"
},
"homepage": "https://github.com/OADA/oada-api-server",
"devDependencies": {
"chai": "^3.2.0",
"chai-as-promised": "^5.1.0",
"istanbul": "^0.3.17",
"jscs": "^2.1.0",
"jshint": "^2.8.0",
"jshint-stylish": "^2.0.1",
"mocha": "^2.3.0",
"mocha-steps": "0.0.1",
"request-promise": "^0.4.2",
"supertest": "^1.1.0",
"supertest-as-promised": "^2.0.2",
"supertest-promised": "^0.1.0"
},
"dependencies": {
"MD5": "^1.2.1",
"bluebird": "^2.9.27",
"bluebird-extra": "^0.1.7",
"bn.js": "^4.11.6",
"body-parser": "^1.12.3",
"bunyan": "^1.3.5",
"content-type": "^1.0.1",
"cors": "^2.6.0",
"ejs": "^2.3.3",
"express": "^4.13.3",
"express-promise": "^0.4.0",
"express-promise-router": "0.0.9",
"extend-error": "0.0.2",
"fifo": "^2.1.0",
"json-pointer": "^0.3.0",
"lodash": "^3.7.0",
"mkdir-recursive": "^0.2.0",
"node-uuid": "^1.4.3",
"oada-error": "^1.1.1",
"oada-formats": "^1.3.2",
"oada-ref-auth": "^0.0.2",
"rwlock": "^5.0.0",
"uuid": "^2.0.1",
"valleyix-formats": "^1.1.1",
"well-known-json": "^0.2.0"
}
}