forked from travist/resourcejs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.05 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
{
"name": "resourcejs",
"version": "1.5.1",
"description": "A simple Express library to reflect Mongoose models to a REST interface.",
"main": "Resource.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha test/test.js -b -t 30000"
},
"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": "^2.3.0",
"fast-json-patch": "^0.5.7",
"lodash": "^4.16.6",
"mongoose": "^4.6.8",
"node-paginate-anything": "git+https://github.com/polo2ro/node-paginate-anything.git"
},
"devDependencies": {
"async": "^0.9.0",
"body-parser": "^1.10.2",
"chance": "^1.0.0",
"express": "^4.11.1",
"mocha": "^2.1.0",
"mongodb": "^2.0.41",
"supertest": "^0.15.0"
}
}