-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
52 lines (52 loc) · 1.24 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
{
"name": "resourcejs",
"version": "2.6.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.3.2",
"fast-json-patch": "^3.1.1",
"moment": "^2.29.1",
"mongodb": "^6.8.0",
"mongoose": "^8.4.4",
"node-paginate-anything": "^1.0.0",
"range-parser": "^1.2.1"
},
"devDependencies": {
"body-parser": "^1.20.1",
"chance": "^1.1.9",
"coveralls": "^3.1.1",
"eslint": "^8.32.0",
"eslint-config-formio": "^1.1.4",
"express": "^4.18.2",
"lodash": "^4.17.21",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"supertest": "^6.3.3"
},
"peerDependencies": {
"express": "4.x",
"mongoose": "8.x"
}
}