-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
86 lines (86 loc) · 2.41 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
{
"name": "vuex-cli",
"version": "2.0.1",
"description": "快速搭建 vuex/vuejs 应用脚手架。",
"main": "bin/vuex.js",
"engine": {
"node": ">=6.2.0"
},
"scripts": {
"test": "env NODE_PATH=$NODE_PATH:$PWD/src ./node_modules/.bin/babel-node ./node_modules/.bin/_mocha --compilers js:babel-register --opts ./.mocharc ",
"start": "npm run build:watch",
"build": "./node_modules/.bin/babel src -d lib",
"build:watch": "./node_modules/.bin/babel src --watch -d lib",
"lint": "./node_modules/.bin/eslint ./src ./test ./blueprints",
"clean": "rimraf lib",
"publish:patch": "npm test && npm run clean && npm run build && npm version patch && npm publish",
"publish:minor": "npm test && npm run clean && npm run build && npm version minor && npm publish",
"release": "bash build/release.sh"
},
"bin": {
"vuex": "bin/vuex.js",
"vuex-init": "bin/vuex-init.js",
"vuex-generate": "bin/vuex-generate.js",
"vuex-g": "bin/vuex-g.js",
"vuex-new": "bin/vuex-new.js",
"vuex-server": "bin/vuex-server.js",
"vuex-compile": "bin/vuex-compile.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sokis/vuex-cli.git"
},
"keywords": [
"vuex",
"vue",
"cli",
"generator",
"vue.js",
"kit",
"starter-kit",
"vuex-starter-kit",
"vue-vuex-starter-kit"
],
"author": "sokis <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sokis/vuex-cli/issues"
},
"homepage": "https://github.com/sokis/vuex-cli#readme",
"dependencies": {
"chalk": "^1.1.1",
"commander": "^2.9.0",
"denodeify": "^1.2.1",
"ejs": "^2.4.1",
"elegant-spinner": "^1.0.1",
"figlet": "^1.1.1",
"fs-extra": "^0.26.5",
"humps": "^1.0.0",
"jsonfile": "^2.2.3",
"koa": "^1.2.1",
"lodash": "^4.5.1",
"log-update": "^1.0.2",
"minimist": "^1.2.0",
"prompt": "^1.0.0",
"shelljs": "^0.6.0",
"temp": "^0.8.3",
"through": "^2.3.8",
"vuex-cli-webpack": "^1.0.12",
"walk-sync": "^0.2.6"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-eslint": "^4.1.8",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.5.1",
"chai": "^3.5.0",
"codecov": "^1.0.1",
"eslint": "^1.10.3",
"eslint-plugin-ejs": "0.0.2",
"isparta": "^4.0.0",
"istanbul": "^0.4.2",
"mocha": "^2.4.5",
"rimraf": "^2.5.2",
"sinon": "^1.17.3"
}
}