forked from toddself/restormify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.13 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.13 KB
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
{
"name": "restormify",
"version": "1.0.1",
"description": "An automatic API generator for node-orm2 and restify",
"main": "index.js",
"scripts": {
"test": "mocha --inline-diffs -R tap test/*spec.js",
"test-coverage": "istanbul cover _mocha -- -R tap test/*spec.js"
},
"repository": {
"type": "git",
"url": "git://github.com/toddself/restormify"
},
"keywords": [
"rest",
"orm",
"orm2",
"node-orm",
"node-orm2",
"restify",
"http",
"rest",
"server",
"server",
"persistance",
"orm",
"HAL",
"HATEOAS",
"hypertext application language"
],
"author": "Todd Kennedy <todd@selfassembled.org>",
"license": "MIT",
"bugs": {
"url": "https://github.com/toddself/restormify/issues"
},
"homepage": "https://github.com/toddself/restormify",
"peerDependencies": {
"orm": "~2.x",
"restify": "~2.X"
},
"devDependencies": {
"istanbul": "^0.3.0",
"mocha": "~1.21.3",
"orm": "~2.1.17",
"restify": "~2.8.1",
"sqlite3": "^2.2.4"
},
"dependencies": {
"async": "^0.9.0",
"lodash.isempty": "^2.4.1",
"xtend": "^3.0.0"
}
}