UNPKG

2.63 kBJSONView Raw
1{
2 "name": "vuex",
3 "version": "2.3.1",
4 "description": "state management for Vue.js",
5 "main": "dist/vuex.js",
6 "module": "dist/vuex.esm.js",
7 "unpkg": "dist/vuex.js",
8 "typings": "types/index.d.ts",
9 "files": [
10 "dist",
11 "src",
12 "types/index.d.ts",
13 "types/helpers.d.ts",
14 "types/vue.d.ts"
15 ],
16 "scripts": {
17 "dev": "node examples/server.js",
18 "dev:dist": "rollup -wm -c build/rollup.config.js",
19 "build": "npm run build:main && npm run build:esm && npm run build:logger",
20 "build:main": "rollup -c build/rollup.config.js && uglifyjs dist/vuex.js -cm --comments -o dist/vuex.min.js",
21 "build:esm": "rollup -c build/rollup.config.js --environment ESM",
22 "build:logger": "rollup -c build/rollup.logger.config.js",
23 "lint": "eslint src test",
24 "test": "npm run lint && npm run test:types && npm run test:unit && npm run test:e2e",
25 "test:unit": "rollup -c build/rollup.config.js && jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json",
26 "test:e2e": "node test/e2e/runner.js",
27 "test:types": "tsc -p types/test",
28 "release": "bash build/release.sh",
29 "docs": "cd docs && gitbook serve",
30 "docs:deploy": "cd docs && ./deploy.sh"
31 },
32 "repository": {
33 "type": "git",
34 "url": "git+https://github.com/vuejs/vuex.git"
35 },
36 "author": "Evan You",
37 "license": "MIT",
38 "bugs": {
39 "url": "https://github.com/vuejs/vuex/issues"
40 },
41 "homepage": "https://github.com/vuejs/vuex#readme",
42 "devDependencies": {
43 "babel-core": "^6.22.1",
44 "babel-eslint": "^7.1.1",
45 "babel-loader": "^6.2.10",
46 "babel-plugin-transform-runtime": "^6.22.0",
47 "babel-polyfill": "^6.22.0",
48 "babel-preset-es2015": "^6.22.0",
49 "babel-preset-es2015-rollup": "^3.0.0",
50 "babel-preset-stage-2": "^6.22.0",
51 "babel-runtime": "^6.22.0",
52 "chromedriver": "^2.27.2",
53 "cross-spawn": "^5.0.1",
54 "css-loader": "^0.26.1",
55 "eslint": "^3.15.0",
56 "eslint-config-vue": "^2.0.2",
57 "eslint-plugin-vue": "^2.0.1",
58 "express": "^4.14.1",
59 "jasmine": "2.5.3",
60 "jasmine-core": "2.5.2",
61 "nightwatch": "^0.9.12",
62 "nightwatch-helpers": "^1.2.0",
63 "phantomjs-prebuilt": "^2.1.14",
64 "rollup": "^0.41.4",
65 "rollup-plugin-buble": "^0.15.0",
66 "rollup-plugin-replace": "^1.1.1",
67 "rollup-watch": "^3.2.2",
68 "selenium-server": "^2.53.1",
69 "todomvc-app-css": "^2.0.6",
70 "typescript": "^2.1.5",
71 "uglify-js": "^2.7.5",
72 "vue": "^2.1.10",
73 "vue-loader": "^11.0.0",
74 "vue-template-compiler": "^2.1.10",
75 "webpack": "^2.2.1",
76 "webpack-dev-middleware": "^1.10.0",
77 "webpack-hot-middleware": "^2.16.1"
78 }
79}