-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
36 lines (36 loc) · 893 Bytes
/
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
{
"name": "express-mongo-rest",
"version": "0.1.3",
"description": "An mongo-backed RESTful express route.",
"main": "index.js",
"repository": {
"type": "git",
"url": "http://github.com/pbatey/express-mongo-rest"
},
"author": "Phil Batey <pbatey@gmail.com>",
"license": "MIT License",
"devDependencies": {
"chai": "^3.5.0",
"compression": "^1.6.2",
"dotenv": "2.0.0",
"faker": "^5.1.0",
"method-override": "^2.3.7",
"mocha": "^10.7.3",
"morgan": "^1.7.0",
"parse-link-header": "^1.0.1",
"pem": "^1.9.4",
"supertest": "^2.0.1"
},
"scripts": {
"test": "node_modules/mocha/bin/mocha"
},
"dependencies": {
"body-parser": "^1.15.0",
"express": "^4.14.0",
"inflection": "^1.10.0",
"jsonpatch-to-mongodb": "^0.3.0",
"mongodb": "^2.2.16",
"mongoskin": "^2.1.0",
"query-to-mongo": "^0.6.0"
}
}