vuex-alt
Version:
An alternative approach to Vuex helpers for accessing state, getters and actions that doesn't rely on string constants.
42 lines (41 loc) • 1.16 kB
JSON
{
"name": "vuex-alt",
"version": "0.0.8",
"description": "An alternative approach to Vuex helpers for accessing state, getters and actions that doesn't rely on string constants.",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/ejfrancis/Vuex-Alt.git"
},
"scripts": {
"test": "jest",
"build": "npm run test && npm run bundle",
"bundle": "rimraf dist/ && rollup --config rollup.config.js && babel dist/index-not-transpiled.js --out-file dist/index.js && rimraf dist/index-not-transpiled.js",
"prepush": "npm run test && npm run build"
},
"keywords": [
"Vue",
"Vuex",
"action",
"actions",
"plugin"
],
"author": "Evan Francis",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"husky": "^1.1.4",
"jest": "^23.6.0",
"rimraf": "^2.6.1",
"rollup": "^0.67.1",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^3.4.0"
},
"dependencies": {
"camelcase": "^4.1.0"
}
}