UNPKG

vuex-local

Version:

Local state management within Vuex

69 lines (68 loc) 2.28 kB
{ "name": "vuex-local", "version": "0.2.0", "author": "katashin", "description": "Local state management within Vuex", "keywords": [ "local", "state", "management", "Vue", "Vuex" ], "license": "MIT", "main": "dist/vuex-local.cjs.js", "jsnext:main": "lib/index.js", "typings": "lib/index.d.ts", "files": [ "dist", "lib" ], "homepage": "https://github.com/ktsn/vuex-local", "bugs": "https://github.com/ktsn/vuex-local/issues", "repository": { "type": "git", "url": "https://github.com/ktsn/vuex-local.git" }, "scripts": { "prepublishOnly": "npm run build", "clean": "rm -rf dist .tmp lib", "build": "run-s build:ts build:cjs build:dev build:prod", "build:ts": "tsc -p . --outDir lib", "build:cjs": "rollup -c scripts/rollup.config.js --environment BUILD:commonjs", "build:dev": "rollup -c scripts/rollup.config.js --environment BUILD:development", "build:prod": "rollup -c scripts/rollup.config.js --environment BUILD:production | uglifyjs -mc warnings=false --comments -o dist/vuex-local.min.js", "watch:test": "webpack --watch --config scripts/webpack.config.test.js", "example": "npm run build:ts && webpack-dev-server --config scripts/webpack.config.example.js --hot --no-info", "testem": "testem", "lint": "tslint \"src/**/*.ts\" \"test/**/*.ts\"", "lint:fix": "tslint --fix \"src/**/*.ts\" \"test/**/*.ts\"", "test": "run-p watch:test testem", "test:ci": "webpack --config scripts/webpack.config.test.js && testem ci --launch PhantomJS" }, "devDependencies": { "@types/mocha": "^2.2.46", "@types/power-assert": "1.4.29", "buble": "^0.18.0", "buble-loader": "^0.4.1", "css-loader": "^0.28.8", "es6-promise": "^4.2.2", "glob": "^7.1.2", "npm-run-all": "^4.1.2", "power-assert": "^1.4.4", "rollup": "^0.53.3", "rollup-plugin-replace": "^2.0.0", "testem": "^1.18.4", "ts-loader": "^3.2.0", "tslint": "^5.8.0", "tslint-config-ktsn": "^2.1.0", "typescript": "^2.6.2", "vue": "^2.5.13", "vue-loader": "^13.7.0", "vue-template-compiler": "^2.5.13", "vuex": "^3.0.1", "webpack": "^3.10.0", "webpack-dev-server": "~2.9.0", "webpack-espower-loader": "^1.0.2" } }