12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- {
- "name": "vuex",
- "version": "2.3.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",
- "src",
- "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: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:types": "tsc -p types/test",
- "release": "bash build/release.sh",
- "docs": "cd docs && 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": "^6.2.10",
- "babel-plugin-transform-object-rest-spread": "^6.23.0",
- "babel-polyfill": "^6.22.0",
- "babel-preset-env": "^1.5.1",
- "chromedriver": "^2.27.2",
- "cross-spawn": "^5.0.1",
- "css-loader": "^0.26.1",
- "eslint": "^3.15.0",
- "eslint-plugin-vue-libs": "^1.2.0",
- "express": "^4.14.1",
- "jasmine": "2.5.3",
- "jasmine-core": "2.5.2",
- "nightwatch": "^0.9.12",
- "nightwatch-helpers": "^1.2.0",
- "phantomjs-prebuilt": "^2.1.14",
- "rollup": "^0.41.4",
- "rollup-plugin-buble": "^0.15.0",
- "rollup-plugin-replace": "^1.1.1",
- "rollup-watch": "^3.2.2",
- "selenium-server": "^2.53.1",
- "todomvc-app-css": "^2.1.0",
- "typescript": "^2.1.5",
- "uglify-js": "^2.7.5",
- "vue": "^2.3.3",
- "vue-loader": "^12.0.0",
- "vue-template-compiler": "^2.3.3",
- "webpack": "^2.6.1",
- "webpack-dev-middleware": "^1.10.0",
- "webpack-hot-middleware": "^2.16.1"
- }
- }
|