forked from vuejs/vuex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.56 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
{
"name": "vuex",
"version": "3.0.1",
"description": "state management for Vue.js",
"main": "dist/vuex.common.js",
"module": "dist/vuex.esm.js",
"unpkg": "dist/vuex.js",
"typings": "types/index.d.ts",
"files": [
"dist",
"types/index.d.ts",
"types/helpers.d.ts",
"types/vue.d.ts"
],
"scripts": {
"dev": "node examples/server.js",
"dev:dist": "rollup -wm -c build/rollup.dev.config.js",
"build": "npm run build:main && npm run build:logger",
"build:main": "node build/build.main.js",
"build:logger": "rollup -c build/rollup.logger.config.js",
"lint": "eslint src test",
"test": "npm run lint && npm run test:types && npm run test:unit && npm run test:ssr && npm run test:e2e",
"test:unit": "rollup -c build/rollup.dev.config.js && jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json",
"test:e2e": "node test/e2e/runner.js",
"test:ssr": "rollup -c build/rollup.dev.config.js && VUE_ENV=server jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json",
"test:types": "tsc -p types/test",
"release": "bash build/release.sh",
"docs": "cd docs && gitbook install && gitbook serve",
"docs:deploy": "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.22.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-polyfill": "^6.22.0",
"babel-preset-env": "^1.5.1",
"chromedriver": "^2.32.3",
"cross-spawn": "^5.0.1",
"css-loader": "^0.28.7",
"eslint": "^3.19.0",
"eslint-plugin-vue-libs": "^1.2.0",
"express": "^4.14.1",
"gitbook-plugin-edit-link": "^2.0.2",
"gitbook-plugin-github": "^3.0.0",
"gitbook-plugin-prism": "^2.3.0",
"gitbook-plugin-theme-vuejs": "^1.1.0",
"jasmine": "2.8.0",
"jasmine-core": "2.8.0",
"nightwatch": "^0.9.12",
"nightwatch-helpers": "^1.2.0",
"phantomjs-prebuilt": "^2.1.14",
"rollup": "^0.50.0",
"rollup-plugin-buble": "^0.16.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-watch": "^4.3.1",
"selenium-server": "^2.53.1",
"todomvc-app-css": "^2.1.0",
"typescript": "^2.5.3",
"uglify-js": "^3.1.2",
"vue": "^2.5.0",
"vue-loader": "^13.3.0",
"vue-template-compiler": "^2.5.0",
"webpack": "^3.7.1",
"webpack-dev-middleware": "^1.10.0",
"webpack-hot-middleware": "^2.19.1"
}
}