forked from linnovate/mean-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.73 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
{
"name": "meanio",
"version": "0.5.16",
"preferGlobal": true,
"description": "Simple command line interface for installing and managing MEAN apps",
"author": {
"name": "linnovate"
},
"contributors": [
{
"name": "Lior Kesos",
"mail": "[email protected]"
},
{
"name": "Yonatan Ellman",
"mail": "[email protected]"
},
{
"name": "Drew Fyock",
"mail": "[email protected]"
},
{
"name": "Ehud Shahak",
"mail": "[email protected]"
}
],
"license": "AGPL",
"main": "index",
"bin": {
"mean": "./bin/mean",
"mean-init": "./bin/mean-init",
"mean-postinstall": "./bin/mean-postinstall",
"mean-install": "./bin/mean-install",
"mean-uninstall": "./bin/mean-uninstall",
"mean-docs": "./bin/mean-docs",
"mean-package": "./bin/mean-package",
"mean-list": "./bin/mean-list",
"mean-status": "./bin/mean-status",
"mean-user": "./bin/mean-user"
},
"repository": {
"type": "git",
"url": "https://github.com/linnovate/mean-cli.git"
},
"keywords": [
"mean",
"meanio",
"mean.io"
],
"engines": {
"node": "0.10.x",
"npm": "1.4.x"
},
"dependencies": {
"bower": "^1.3.8",
"chalk": "^0.5.1",
"commander": "^2.2.0",
"dependable": "^0.2.5",
"glob": "^4.0.3",
"lodash": "^2.4.1",
"mongodb": "^1.4.0",
"mean-health": "~0.1.3",
"mongoose": "^3.8.12",
"npm": "^1.4.7",
"opener": "^1.3.0",
"q": "^1.0.1",
"shelljs": "^0.3.0",
"swig": "^1.3.2",
"uglify-js": "^2.4.14"
},
"devDependencies": {
"grunt": "^0.4.4",
"grunt-contrib-jshint": "^0.10.0",
"grunt-mocha-test": "^0.10.0",
"mocha": "^1.18.2",
"should": "^3.2.0"
}
}