forked from travist/resourcejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.15 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
{
"name": "resourcejs",
"version": "1.38.1",
"description": "A simple Express library to reflect Mongoose models to a REST interface.",
"main": "Resource.js",
"scripts": {
"test": "mocha test/test.js -b -t 30000 --exit",
"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": {
"composable-middleware": "^0.3.0",
"debug": "^4.1.1",
"fast-json-patch": "^2.2.1",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"mongodb": "^3.4.0",
"node-paginate-anything": "^1.0.0"
},
"devDependencies": {
"body-parser": "^1.19.0",
"chance": "^1.1.3",
"eslint": "^6.6.0",
"eslint-config-formio": "^1.1.4",
"express": "^4.17.1",
"mocha": "^6.2.2",
"mongoose": "^5.8.0",
"supertest": "^4.0.2"
},
"peerDependencies": {
"mongoose": "5.x",
"express": "4.x"
}
}