-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
38 lines (38 loc) · 863 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
{
"name": "odata-resource",
"version": "2.0.0",
"description": "REST + OData + Mongoose/MongoDb",
"main": "index.js",
"scripts": {
"test": "nyc --reporter=html mocha --timeout 5000 test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adamspe/odata-resource.git"
},
"keywords": [
"REST",
"OData",
"Mongoose",
"MongoDb"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/adamspe/odata-resource/issues"
},
"homepage": "https://adamspe.github.io/odata-resource/",
"dependencies": {
"debug": ">=2.6.9"
},
"devDependencies": {
"body-parser": ">=1.19.0",
"chai": "^3.3.0",
"express": ">=4.17.1",
"mocha": "^6.2.2",
"mongoose": ">=5.7.5",
"nyc": "^15.0.0",
"should": "^7.1.0",
"supertest": ">=3.7.0"
}
}