forked from zackyang000/node-odata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 891 Bytes
/
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
{
"name": "node-odata",
"version": "0.3.1",
"private": false,
"description": "A module for easily create a REST API based on oData protocol",
"main": "index.js",
"author": {
"name": "Zack",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/TossShinHwa/node-odata.git"
},
"engines": {
"node": "0.10.x",
"npm": "1.4.x"
},
"scripts": {
"run": "grunt"
},
"keywords": [
"OData",
"restful-api"
],
"license": "MIT",
"dependencies": {
"coffee-script": "1.7.0",
"istanbul": "^0.3.3",
"lodash": "^2.4.1",
"mongoose": "~3",
"express": "3.2.0",
"node-uuid": "1.4.2"
},
"devDependencies": {
"mocha": "1.21.4",
"should": "3.3.2",
"supertest": "0.14.0",
"coffee-coverage": "^0.4.2",
"sinon": "1.10.3",
"pow-mongoose-fixtures": "0.3.0"
}
}