forked from florianholzapfel/express-restify-mongoose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
134 lines (134 loc) · 2.82 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"author": {
"email": "[email protected]",
"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"
},
{
"name": "Zertz"
},
{
"name": "Emre Efendioğlu"
},
{
"name": "Tim Mckenzie"
},
{
"name": "Emil Janitzek"
},
{
"name": "Daniel Henrique"
},
{
"name": "Caleb Meredith"
},
{
"name": "David Souther"
},
{
"name": "Marco Cameriero"
},
{
"name": "Jan Melcher"
},
{
"name": "Urs Wolfer"
},
{
"name": "Thomas Forrer"
},
{
"name": "Stefan Kleeschulte"
},
{
"name": "Reimund Trost"
},
{
"name": "Elliott Garcea"
}
],
"dependencies": {
"inflection": "~1.7.0",
"lodash": "~3.10.0",
"mongoose": "^4.0.0"
},
"description": "Easily restify mongoose database",
"devDependencies": {
"assertmessage": "0.0.2",
"async": "~0.9.0",
"mocha": "~2.2",
"request": "~2",
"express": "~4",
"body-parser": "*",
"method-override": "*",
"restify": "~3.0",
"sinon": "~1",
"standard": "^4.0.0"
},
"engines": {
"node": ">=0.10"
},
"homepage": "http://florianholzapfel.github.io/express-restify-mongoose/",
"keywords": [
"ReST",
"express",
"restify",
"mongodb",
"mongoose"
],
"license" : "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"
},
"bugs": {
"url": "https://github.com/florianholzapfel/express-restify-mongoose/issues"
},
"scripts": {
"pretest": "./node_modules/standard/bin/cmd.js",
"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": "1.0.4"
}