forked from xamien/resourcejs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.18 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.18 KB
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
{
"name": "resourcejs",
"version": "2.2.0",
"description": "A simple Express library to reflect Mongoose models to a REST interface.",
"main": "Resource.js",
"scripts": {
"test": "mocha --exit",
"coverage": "nyc --reporter=lcov --report-dir=./coverage npm run test",
"lint": "eslint Resource.js"
},
"repository": {
"type": "git",
"url": "https://github.com/travist/resourcejs"
},
"keywords": [
"Express",
"Mongoose",
"Node",
"MEAN"
],
"author": "Travis Tidwell",
"license": "MIT",
"bugs": {
"url": "https://github.com/travist/resourcejs/issues"
},
"homepage": "https://github.com/travist/resourcejs",
"dependencies": {
"debug": "^4.1.1",
"fast-json-patch": "^3.0.0-1",
"moment": "^2.24.0",
"mongodb": "^3.5.6",
"node-paginate-anything": "^1.0.0"
},
"devDependencies": {
"body-parser": "^1.19.0",
"chance": "^1.1.3",
"coveralls": "^3.0.14",
"eslint": "^6.8.0",
"eslint-config-formio": "^1.1.4",
"express": "^4.17.1",
"mocha": "^7.1.1",
"mongoose": "^5.9.10",
"nyc": "^15.0.1",
"supertest": "^4.0.2"
},
"peerDependencies": {
"mongoose": "5.x",
"express": "4.x"
}
}