forked from madlabsinc/mevn-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.6 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
{
"name": "mevn-cli",
"version": "1.1.9",
"description": "A cli tool for MEVN stack.",
"main": "index.js",
"directories": {
"lib": "lib"
},
"bin": {
"mevn": "./bin/index.js"
},
"scripts": {
"compile": "babel --presets env,stage-0 -d src/ lib/",
"test": "node ./node_modules/mocha/bin/mocha test/main_test.js",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"lint": "node ./node_modules/jshint/bin/jshint ./bin ./lib"
},
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/MadlabsInc/mevn-cli.git"
},
"keywords": [
"node.js",
"commander.js",
"inquirer.js",
"shell.js",
"cli",
"mevn",
"vue",
"express",
"mongodb"
],
"author": "Alan Mathew <[email protected]>, James George <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MadlabsInc/mevn-cli/issues"
},
"homepage": "https://github.com/MadlabsInc/mevn-cli#readme",
"dependencies": {
"chalk": "^2.4.1",
"clear": "^0.1.0",
"cli-spinner": "^0.2.8",
"cli-table3": "^0.5.1",
"commander": "^2.16.0",
"elegant-spinner": "^1.0.1",
"figlet": "^1.2.0",
"inquirer": "^6.0.0",
"log-update": "^2.3.0",
"node-cmd": "^3.0.0",
"shelljs": "^0.8.2",
"validate-npm-package-name": "^3.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "^6.24.1",
"jshint": "^2.9.7",
"mocha": "^5.2.0",
"pre-commit": "^1.2.2",
"vuepress": "^0.14.4"
}
}