forked from zackyang000/node-odata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.39 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": "node-odata",
"version": "0.7.15",
"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",
"test": "make"
},
"keywords": [
"OData",
"REST",
"RESTful"
],
"license": "MIT",
"dependencies": {
"body-parser": "1.17.1",
"cors": "2.8.3",
"express": "4.15.2",
"method-override": "2.3.8",
"mongoose": "4.9.5",
"uuid": "3.0.1"
},
"devDependencies": {
"babel": "6.23.0",
"babel-cli": "6.24.1",
"babel-core": "6.24.1",
"babel-eslint": "7.2.2",
"babel-helpers": "6.24.1",
"babel-loader": "6.4.1",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-polyfill": "6.23.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"babel-register": "6.24.1",
"babel-runtime": "6.23.0",
"eslint": "3.19.0",
"eslint-config-airbnb": "14.1.0",
"eslint-plugin-babel": "4.1.1",
"eslint-plugin-import": "2.2.0",
"istanbul": "1.1.0-alpha.1",
"mocha": "3.2.0",
"should": "11.2.1",
"should-sinon": "0.0.5",
"sinon": "2.1.0",
"supertest": "3.0.0"
}
}