forked from pofider/node-simple-odata-server-mongodb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 781 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
{
"name": "simple-odata-server-mongodb",
"version": "1.0.0",
"description": "Adapter for node.js simple odata server using mongodb",
"main": "index.js",
"scripts": {
"test": "mocha --exit -R spec && standard"
},
"author": "Jan Blaha",
"license": "MIT",
"repository": "pofider/node-simple-odata-server-mongodb",
"keywords": [
"OData",
"server",
"mongodb"
],
"dependencies": {
"mongodb": "3.0.1"
},
"standard": {
"env": {
"mocha": true,
"node": true
}
},
"devDependencies": {
"eslint": "4.15.0",
"mocha": "5.0.0",
"safe-buffer": "5.1.1",
"should": "13.2.1",
"simple-odata-server": "1.0.0",
"standard": "10.0.3",
"supertest": "3.0.0"
},
"files": [
"lib",
"index.js"
]
}