-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
58 lines (58 loc) · 1.35 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
{
"name": "express-mongoose-generator",
"version": "3.1.0",
"description": "It’s a mongoose model, REST controller and Express router code generator for Express.js 4 application",
"author": "Damien Perrier <damienperrier33@gmail.com>",
"contributors": [
"romuloctba",
"abks90",
"hudsonburgess",
"ihatem",
"eumend"
],
"keywords": [
"mongodb",
"mongoose",
"express",
"generator",
"rest",
"restfull",
"api",
"app",
"web"
],
"repository": {
"type": "git",
"url": "https://github.com/DamienP33/express-mongoose-generator"
},
"main": "bin/mongoose-gen",
"scripts": {
"test": "mocha --reporter spec --bail --check-leaks test/",
"lint": "jshint ./**/*.js ./bin/mongoose-gen"
},
"engines": {
"node": ">= 0.10.0"
},
"license": "MIT",
"preferGlobal": true,
"bin": {
"mongoose-gen": "./bin/mongoose-gen"
},
"dependencies": {
"async": "^0.9.0",
"commander": "^2.5.0"
},
"devDependencies": {
"jshint": "^2.8.0",
"mkdirp": "^0.5.0",
"mocha": "^8.3.2",
"nexpect": "^0.4.2",
"rimraf": "^2.2.8"
},
"files": [
"LICENSE",
"bin/",
"templates/",
"lib/"
]
}