forked from vuejs/vuex
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.87 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
{
"name": "vuex",
"version": "0.2.0",
"description": "state management for Vue.js",
"main": "lib/index.js",
"files": [
"lib",
"src"
],
"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",
"prepublish": "babel src --out-dir lib --presets es2015 --plugins add-module-exports",
"test": "eslint src && mocha --compilers js:babel-core/register",
"docs": "cd docs && gitbook serve",
"deploy-docs": "cd docs && ./deploy.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-add-module-exports": "^0.1.1",
"babel-plugin-transform-runtime": "^6.1.18",
"babel-polyfill": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-stage-2": "^6.1.18",
"babel-runtime": "^5.8.0",
"chai": "^3.4.1",
"css-loader": "^0.21.0",
"eslint": "^1.10.2",
"mocha": "^2.3.4",
"style-loader": "^0.13.0",
"todomvc-app-css": "^2.0.3",
"vue": "^1.0.8",
"vue-hot-reload-api": "^1.2.1",
"vue-html-loader": "^1.0.0",
"vue-loader": "^7.2.0",
"webpack": "^1.12.8",
"webpack-dev-server": "^1.12.1"
}
}