UNPKG

2.63 kBJSONView Raw
1{
2 "name": "vuex",
3 "version": "3.0.1",
4 "description": "state management for Vue.js",
5 "main": "dist/vuex.common.js",
6 "module": "dist/vuex.esm.js",
7 "unpkg": "dist/vuex.js",
8 "typings": "types/index.d.ts",
9 "files": [
10 "dist",
11 "types/index.d.ts",
12 "types/helpers.d.ts",
13 "types/vue.d.ts"
14 ],
15 "scripts": {
16 "dev": "node examples/server.js",
17 "dev:dist": "rollup -wm -c build/rollup.dev.config.js",
18 "build": "npm run build:main && npm run build:logger",
19 "build:main": "node build/build.main.js",
20 "build:logger": "rollup -c build/rollup.logger.config.js",
21 "lint": "eslint src test",
22 "test": "npm run lint && npm run test:types && npm run test:unit && npm run test:ssr && npm run test:e2e",
23 "test:unit": "rollup -c build/rollup.dev.config.js && jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json",
24 "test:e2e": "node test/e2e/runner.js",
25 "test:ssr": "rollup -c build/rollup.dev.config.js && VUE_ENV=server jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json",
26 "test:types": "tsc -p types/test",
27 "release": "bash build/release.sh",
28 "docs": "cd docs && gitbook install && gitbook serve",
29 "docs:deploy": "cd docs && ./deploy.sh"
30 },
31 "repository": {
32 "type": "git",
33 "url": "git+https://github.com/vuejs/vuex.git"
34 },
35 "author": "Evan You",
36 "license": "MIT",
37 "bugs": {
38 "url": "https://github.com/vuejs/vuex/issues"
39 },
40 "homepage": "https://github.com/vuejs/vuex#readme",
41 "devDependencies": {
42 "babel-core": "^6.22.1",
43 "babel-loader": "^7.1.2",
44 "babel-plugin-transform-object-rest-spread": "^6.23.0",
45 "babel-polyfill": "^6.22.0",
46 "babel-preset-env": "^1.5.1",
47 "chromedriver": "^2.32.3",
48 "cross-spawn": "^5.0.1",
49 "css-loader": "^0.28.7",
50 "eslint": "^3.19.0",
51 "eslint-plugin-vue-libs": "^1.2.0",
52 "express": "^4.14.1",
53 "gitbook-plugin-edit-link": "^2.0.2",
54 "gitbook-plugin-github": "^3.0.0",
55 "gitbook-plugin-prism": "^2.3.0",
56 "gitbook-plugin-theme-vuejs": "^1.1.0",
57 "jasmine": "2.8.0",
58 "jasmine-core": "2.8.0",
59 "nightwatch": "^0.9.12",
60 "nightwatch-helpers": "^1.2.0",
61 "phantomjs-prebuilt": "^2.1.14",
62 "rollup": "^0.50.0",
63 "rollup-plugin-buble": "^0.16.0",
64 "rollup-plugin-replace": "^2.0.0",
65 "rollup-watch": "^4.3.1",
66 "selenium-server": "^2.53.1",
67 "todomvc-app-css": "^2.1.0",
68 "typescript": "^2.5.3",
69 "uglify-js": "^3.1.2",
70 "vue": "^2.5.0",
71 "vue-loader": "^13.3.0",
72 "vue-template-compiler": "^2.5.0",
73 "webpack": "^3.7.1",
74 "webpack-dev-middleware": "^1.10.0",
75 "webpack-hot-middleware": "^2.19.1"
76 }
77}