forked from travist/resourcejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.08 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
{
"name": "resourcejs",
"version": "1.25.2",
"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": "^3.1.0",
"fast-json-patch": "^2.0.6",
"lodash": "^4.17.10",
"moment": "^2.22.2",
"mongodb": "^3.1.3",
"node-paginate-anything": "^1.0.0"
},
"devDependencies": {
"body-parser": "^1.18.3",
"chance": "^1.0.16",
"eslint": "^5.4.0",
"eslint-config-formio": "^1.1.4",
"express": "^4.16.3",
"mocha": "^5.2.0",
"mongoose": "5.2.8",
"supertest": "^3.1.0"
}
}