forked from zackyang000/node-odata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.3 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
{
"name": "node-odata",
"version": "0.7.11",
"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.12"
},
"scripts": {
"prepublish": "make compile",
"test": "make"
},
"keywords": [
"OData",
"REST",
"RESTful"
],
"license": "MIT",
"dependencies": {
"express": "4.12.0",
"body-parser": "1.13.1",
"method-override": "2.3.3",
"cors": "2.4.2",
"mongoose": "4.0.3",
"node-uuid": "1.4.3"
},
"devDependencies": {
"babel": "6.3.26",
"babel-cli": "6.4.0",
"babel-core": "6.4.0",
"babel-eslint": "5.0.0-beta9",
"babel-helpers": "6.4.0",
"babel-loader": "6.2.1",
"babel-polyfill": "6.3.14",
"babel-runtime": "6.3.19",
"babel-preset-es2015": "6.3.13",
"babel-preset-stage-0": "6.3.13",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"eslint": "1.10.3",
"eslint-config-airbnb": "4.0.0",
"coffee-script": "1.9.0",
"istanbul": "0.3.13",
"mocha": "2.2.5",
"should": "7.0.1",
"sinon": "1.14.1",
"supertest": "0.15.0"
}
}