forked from saintedlama/restify-mongoose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.09 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
{
"name": "restify-mongoose",
"version": "0.2.2",
"description": "Expose mongoose models as REST resources",
"author": "[email protected]",
"contributors": [
{
"name": "Matthieu Bacconnier",
"email": "[email protected]",
"url": "http://blog.neamar.fr"
},
{
"name": "Dave Jensen",
"email": "[email protected]",
"url": "http://build47.com"
}
],
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test mocha -R spec test/",
"cover": "NODE_ENV=test istanbul cover ./node_modules/mocha/bin/_mocha --report lcov -- -R spec"
},
"keywords": [
"restify",
"mongoose",
"REST",
"resource"
],
"license": "BSD-2-Clause",
"dependencies": {
"async": "~0.9.0",
"mongoose": "~3.8.0",
"restify": "~2.8.0"
},
"devDependencies": {
"mocha": "~1.20.0",
"should": "~4.0.0",
"supertest": "~0.13.0",
"istanbul": "^0.3.0"
},
"bugs": "https://github.com/saintedlama/restify-mongoose/issues",
"repository": {
"type": "git",
"url": "https://github.com/saintedlama/restify-mongoose.git"
}
}