forked from florianholzapfel/express-restify-mongoose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.12 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
{
"name": "express-restify-mongoose",
"description": "Easily restify mongoose database",
"version": "0.2.3",
"author": {
"name": "Florian Holzapfel",
"email": "[email protected]"
},
"homepage": "https://github.com/florianholzapfel/express-restify-mongoose",
"keywords": [
"ReST",
"express",
"restify",
"mongodb",
"mongoose"
],
"licenses": [
{
"type": "The MIT License (MIT)",
"url": "http://opensource.org/licenses/MIT"
}
],
"scripts": {
"pretest": "./node_modules/.bin/jshint lib test",
"test": "./node_modules/.bin/mocha -R spec ./test --recursive --timeout 5s"
},
"repository": {
"type": "git",
"url": "git://github.com/florianholzapfel/express-restify-mongoose.git"
},
"main": "./lib/express-restify-mongoose",
"engines": {
"node": "*"
},
"readmeFilename": "README.md",
"dependencies": {
"express": "~3.3.5",
"mongoose": "~3.6.13"
},
"devDependencies": {
"jshint": "~2.1.4",
"mocha": "~1.12.0",
"assertmessage": "0.0.2",
"restify": "~2.6.0",
"request": "~2.25.0",
"sugar": "~1.3.9"
}
}