-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
76 lines (76 loc) · 2.04 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
{
"name": "mean-cli",
"description": "Simple command line interface for installing and managing MEAN apps",
"version": "0.12.15",
"author": {
"name": "https://github.com/linnovate/mean-cli/graphs/contributors"
},
"bin": {
"mean": "./bin/mean",
"mean-init": "./bin/mean-init",
"mean-authorize": "./bin/mean-authorize",
"mean-whoami": "./bin/mean-whoami",
"mean-login": "./bin/mean-login",
"mean-addKey": "./bin/mean-addKey",
"mean-publish": "./bin/mean-publish",
"mean-search": "./bin/mean-search",
"mean-register": "./bin/mean-register",
"mean-postinstall": "./bin/mean-postinstall",
"mean-preinstall": "./bin/mean-preinstall",
"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",
"mean-logout": "./bin/mean-logout",
"mean-disable": "./bin/mean-disable",
"mean-enable": "./bin/mean-enable"
},
"contributors": "https://github.com/linnovate/mean-cli/graphs/contributors",
"dependencies": {
"async-series": "latest",
"bower": "^1.3.8",
"chalk": "^1.1.3",
"commander": "^2.4.0",
"crypto": "latest",
"inquirer": "^1.0.2",
"lodash": "^4.12.0",
"mongoose": "~4.4.15",
"opener": "^1.3.0",
"progress": "^1.1.8",
"prompt": "^1.0.0",
"request": "^2.72.0",
"shelljs": "^0.7.0"
},
"devDependencies": {
"jshint": "^2.5.10",
"mocha": "^2.4.5",
"precommit-hook": "^3.0.0",
"should": "^8.3.1"
},
"keywords": [
"mean",
"meanio",
"mean.io",
"mean-cli"
],
"license": "MIT",
"main": "index",
"preferGlobal": true,
"repository": {
"type": "git",
"url": "https://github.com/linnovate/mean-cli.git"
},
"scripts": {
"test": "node node_modules/.bin/mocha test/**/*.js -R spec",
"lint": "jshint .",
"validate": "npm ls"
},
"pre-commit": [
"lint",
"validate",
"test"
]
}