forked from vuejs/vuex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.44 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
{
"name": "vuex",
"version": "0.6.3",
"description": "state management for Vue.js",
"main": "dist/vuex.js",
"files": [
"dist",
"src",
"logger.js"
],
"scripts": {
"counter": "cd examples/counter && webpack-dev-server --inline --hot --config ../webpack.shared.config.js",
"counter-hot": "cd examples/counter-hot && webpack-dev-server --inline --hot --config ../webpack.shared.config.js",
"todomvc": "cd examples/todomvc && webpack-dev-server --inline --hot --config ../webpack.shared.config.js",
"cart": "cd examples/shopping-cart && webpack-dev-server --inline --hot --config ../webpack.shared.config.js",
"chat": "cd examples/chat && webpack-dev-server --inline --hot --config ../webpack.shared.config.js",
"build": "node build/build.js",
"build-examples": "BABEL_ENV=development webpack --config examples/webpack.build-all.config.js",
"unit": "BABEL_ENV=development mocha test/unit/test.js --compilers js:babel-core/register",
"e2e": "casperjs test --concise ./test/e2e",
"test": "eslint src && npm run unit && npm run build-examples && npm run e2e",
"docs": "cd docs && gitbook serve",
"deploy-docs": "cd docs && ./deploy.sh",
"release": "bash build/release.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/vuex.git"
},
"author": "Evan You",
"license": "MIT",
"bugs": {
"url": "https://github.com/vuejs/vuex/issues"
},
"homepage": "https://github.com/vuejs/vuex#readme",
"devDependencies": {
"babel-core": "^6.2.1",
"babel-loader": "^6.2.0",
"babel-plugin-transform-runtime": "^6.1.18",
"babel-polyfill": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-es2015-rollup": "^1.1.1",
"babel-preset-stage-2": "^6.1.18",
"babel-runtime": "^5.8.0",
"casperjs": "^1.1.0-beta5",
"chai": "^3.4.1",
"css-loader": "^0.23.1",
"eslint": "^2.2.0",
"eslint-config-standard": "^5.1.0",
"eslint-plugin-promise": "^1.0.8",
"eslint-plugin-standard": "^1.3.2",
"function-bind": "^1.1.0",
"mocha": "^2.3.4",
"rollup": "^0.25.4",
"rollup-plugin-babel": "^2.4.0",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"todomvc-app-css": "^2.0.3",
"uglify-js": "^2.6.2",
"vue": "^1.0.17",
"vue-hot-reload-api": "^1.2.1",
"vue-html-loader": "^1.0.0",
"vue-loader": "^8.2.0",
"vue-style-loader": "^1.0.0",
"webpack": "^1.12.8",
"webpack-dev-server": "^1.12.1"
}
}