UNPKG

vuex-module-decorators

Version:
80 lines (79 loc) 2.36 kB
{ "name": "vuex-module-decorators", "version": "2.0.0", "description": "Decorators to make class-like Vuex modules", "main": "dist/cjs/index.js", "types": "dist/types/index.d.ts", "typings": "dist/types/index.d.ts", "module": "dist/esm/index.js", "sideEffects": false, "scripts": { "clean": "rimraf dist .rpt2_cache", "distclean": "rimraf .nyc_output coverage dist .rpt2_cache", "postinstall": "node -e \"try{require('./postinstall')}catch(e){}\"", "prebuild": "npm run clean", "build": "rollup -c", "prepublishOnly": "npm run build", "pretest": "npm run build && npm run lint", "test": "cd test && mocha -r ts-node/register \"**/*.ts\"", "test:dirty": "cd test && mocha -r ts-node/register \"**/*.ts\"", "cover": "nyc npm test", "prereport": "npm run cover", "report": "nyc report --reporter lcov --reporter html", "docs:build": "vuepress build docs", "docs:serve": "vuepress dev docs", "lint": "tslint --project .", "lint:fix": "tslint --project . --fix" }, "repository": { "type": "git", "url": "git+https://github.com/championswimmer/vuex-module-decorators.git" }, "keywords": [ "vuex", "vue", "typescript", "decorators" ], "author": "Arnav Gupta <arnav@codingblocks.com>", "license": "MIT", "bugs": { "url": "https://github.com/championswimmer/vuex-module-decorators/issues" }, "peerDependencies": { "vue": ">=3", "vuex": ">=4" }, "homepage": "https://github.com/championswimmer/vuex-module-decorators#readme", "devDependencies": { "@types/chai": "^4.2.22", "@types/mocha": "^9.0.0", "chai": "^4.3.4", "mocha": "^9.1.3", "mock-local-storage": "^1.1.8", "nyc": "^15.1.0", "prettier": "^2.1.2", "rimraf": "^3.0.2", "rollup": "^2.27.1", "rollup-plugin-typescript2": "^0.31.0", "rollup-plugin-uglify": "^6.0.4", "ts-node": "^9.0.0", "tslib": "^2.3.1", "tslint": "^6.1.3", "tslint-config-prettier": "^1.18.0", "tslint-config-standard": "^9.0.0", "tslint-eslint-rules": "^5.4.0", "tslint-plugin-prettier": "^2.3.0", "typescript": "^4.5.2", "vue": "^3.2.22", "vuepress": "^1.0.3", "vuex": "^4.0.2", "vuex-persist": "^2.2.0" }, "dependencies": {}, "engines": { "node": ">= 8", "npm": ">= 5", "yarn": ">= 1" } }