-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
41 lines (41 loc) · 943 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
37
38
39
40
41
{
"name": "swagger-mongoose",
"version": "1.1.2",
"description": "Generate mongoose schemas and models from swagger documents",
"main": "./lib/index.js",
"directories": {
"test": "test"
},
"dependencies": {
"lodash": "^4.6.1"
},
"devDependencies": {
"async": "^2.0.0",
"chai": "^3.5.0",
"mocha": "^2.4.5",
"mockgoose": "^7.0.0",
"mongoose": "^4.8.6"
},
"peerDependencies": {
"mongoose": "^4.8.6"
},
"scripts": {
"test": "mocha --timeout 60000"
},
"repository": {
"type": "git",
"url": "https://github.com/simonguest/swagger-mongoose"
},
"keywords": [
"swagger",
"mongoose",
"mongo",
"schema"
],
"author": "Simon Guest <me@simonguest.com> (http://github.com/simonguest)",
"license": "Apache 2",
"bugs": {
"url": "https://github.com/simonguest/swagger-mongoose/issues"
},
"homepage": "https://github.com/simonguest/swagger-mongoose"
}