forked from vuejs/vue-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.91 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "stage-cli",
"version": "2.8.5",
"description": "A simple CLI for scaffolding various project types. Forked from vue-cli and using an alternative default templates repo.",
"preferGlobal": true,
"bin": {
"stage": "bin/stage",
"stage-init": "bin/stage-init",
"stage-list": "bin/stage-list",
"stage-build": "bin/stage-build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/steven-klein/stage-cli"
},
"keywords": [
"project",
"scaffolding",
"stage",
"cli",
"spa"
],
"author": "Steven Klein",
"license": "MIT",
"bugs": {
"url": "https://github.com/steven-klein/stage-cli/issues"
},
"homepage": "https://github.com/steven-klein/stage-cli#readme",
"main": "lib/index.js",
"scripts": {
"test": "npm run lint && npm run e2e && npm run e2e:build",
"lint": "eslint test/e2e/test*.js lib bin/* --env mocha",
"e2e": "rimraf test/e2e/mock-template-build && cross-env BABEL_ENV=development mocha test/e2e/test.js --slow 1000 --compilers js:babel-core/register",
"e2e:build": "cross-env BABEL_ENV=development mocha test/e2e/test-build.js --timeout 60000 --compilers js:babel-core/register"
},
"dependencies": {
"async": "^2.0.0-rc.2",
"autoprefixer": "^6.6.1",
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-preset-vue-app": "^0.4.0",
"chalk": "^1.1.1",
"commander": "^2.9.0",
"connect-history-api-fallback": "^1.3.0",
"consolidate": "^0.14.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.26.1",
"download-git-repo": "^0.2.1",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^2.0.0-rc.3",
"file-loader": "^0.9.0",
"friendly-errors-webpack-plugin": "^1.1.2",
"handlebars": "^4.0.5",
"html-webpack-plugin": "^2.26.0",
"http-proxy-middleware": "^0.17.3",
"inquirer": "^0.12.0",
"installed-by-yarn-globally": "^0.1.1",
"metalsmith": "^2.1.0",
"minimatch": "^3.0.0",
"multimatch": "^2.1.0",
"opn": "^4.0.2",
"ora": "^0.2.1",
"post-compile-webpack-plugin": "^0.1.0",
"postcss-loader": "^1.2.1",
"read-metadata": "^1.0.0",
"request": "^2.67.0",
"rimraf": "^2.6.1",
"semver": "^5.1.0",
"tildify": "^1.2.0",
"url-loader": "^0.5.7",
"user-home": "^2.0.0",
"validate-npm-package-name": "^2.2.2",
"vue": "^2.1.10",
"vue-loader": "^10.0.2",
"vue-template-compiler": "^2.1.10",
"webpack": "^2.2.0",
"webpack-dev-middleware": "^1.9.0",
"webpack-hot-middleware": "^2.15.0",
"webpack-merge": "^2.3.1"
},
"devDependencies": {
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"chai": "^3.5.0",
"cross-env": "^1.0.7",
"eslint": "^2.7.0",
"eslint-config-standard": "^5.1.0",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-standard": "^1.3.2",
"execa": "^0.5.0",
"mocha": "^2.4.5"
},
"engines": {
"node": ">=4.0.0"
}
}