forked from florianholzapfel/express-restify-mongoose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.21 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"author": {
"email": "flo.holzapfel@gmail.com",
"name": "Florian Holzapfel"
},
"contributors": [
{
"name": "Enric Le\u00f3n"
},
{
"name": "David Higginbotham"
},
{
"name": "Jonathan Greenemeier"
},
{
"name": "Alan Levicki"
},
{
"name": "Michael"
},
{
"name": "Matt Roman"
},
{
"name": "Fetrarijaona R."
},
{
"name": "Jan Paul Erkelens"
},
{
"name": "Christoph Herbst"
},
{
"name": "doobinay"
},
{
"name": "Hareesh"
},
{
"name": "09setht"
},
{
"name": "Ph3n1x"
}
],
"dependencies": {
"inflection": "~1.5",
"lodash": "~2.4",
"mongoose": "~3.8.0"
},
"description": "Easily restify mongoose database",
"devDependencies": {
"assertmessage": "0.0.2",
"async": "~0.9.0",
"jshint": "~2.5.0",
"mocha": "~1.21.0",
"request": "~2.40",
"express": "~4.9",
"body-parser": "*",
"method-override": "*",
"restify": "~2.8.0",
"sinon": "~1.10.0"
},
"engines": {
"node": "*"
},
"homepage": "http://florianholzapfel.github.io/express-restify-mongoose/",
"keywords": [
"ReST",
"express",
"restify",
"mongodb",
"mongoose"
],
"licenses": [
{
"type": "The MIT License (MIT)",
"url": "http://opensource.org/licenses/MIT"
}
],
"main": "./lib/express-restify-mongoose",
"name": "express-restify-mongoose",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git://github.com/florianholzapfel/express-restify-mongoose.git"
},
"scripts": {
"pretest": "./node_modules/.bin/jshint lib test",
"test": "./node_modules/.bin/mocha -R spec ./test/express.js ./test/permissions.js ./test/resource_filter.js --timeout 5s && ./node_modules/.bin/mocha -R spec ./test/restify.js --timeout 5s"
},
"version": "0.7.0"
}