forked from lykmapipo/generator-mvp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.48 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
{
"name": "generator-mvp",
"version": "1.4.1",
"description": "Set of generators to kick start nodejs application with mongoose, expressjs and others",
"license": "MIT",
"main": "app/index.js",
"repository": {
"type": "git",
"url": "git://github.com/lykmapipo/generator-mvp.git"
},
"author": {
"name": "lally elias",
"email": "lallyelias87@gmail.com",
"url": "https://github.com/lykmapipo"
},
"engines": {
"node": ">=0.10.0"
},
"preferGlobal": true,
"scripts": {
"test": "grunt test"
},
"bugs": {
"url": "https://github.com/lykmapipo/generator-mvp/issues"
},
"homepage": "https://github.com/lykmapipo/generator-mvp",
"keywords": [
"yeoman-generator",
"mvp",
"scaffold",
"controller",
"model",
"view",
"generator",
"startup",
"kickstart",
"mongoose",
"express",
"bootstrap",
"connect"
],
"dependencies": {
"chalk": "^1.0.0",
"yeoman-generator": "^0.18.10",
"yosay": "^1.0.3",
"lodash": "^3.6.0",
"inflection": "^1.7.0"
},
"devDependencies": {
"chai": "^2.2.0",
"grunt": "^0.4.5",
"grunt-contrib-jshint": "^0.11.2",
"grunt-contrib-watch": "^0.6.1",
"grunt-mocha-test": "^0.12.7",
"jshint-stylish": "^1.0.1",
"mocha": "^2.2.1",
"rimraf": "^2.3.2"
}
}