UNPKG

@vuex-orm/core

Version:

The Vuex plugin to enable Object-Relational Mapping access to the Vuex Store.

79 lines (78 loc) 2.48 kB
{ "name": "@vuex-orm/core", "version": "0.36.4", "description": "The Vuex plugin to enable Object-Relational Mapping access to the Vuex Store.", "main": "dist/vuex-orm.cjs.js", "browser": "dist/vuex-orm.esm.js", "module": "dist/vuex-orm.esm-bundler.js", "unpkg": "dist/vuex-orm.global.js", "typings": "dist/src/index.d.ts", "files": [ "dist" ], "scripts": { "build": "node scripts/build.js", "clean": "rm -rf dist && rm -rf dist && rm -rf coverage && rm -rf .nyc_output && rm -rf .tmp", "lint": "prettier --write --parser typescript \"{src,test}/**/*.ts\"", "lint:fail": "prettier --check --parser typescript \"{src,test}/**/*.ts\"", "test": "jest --testPathIgnorePatterns test/performance", "test:watch": "jest --testPathIgnorePatterns test/performance --watch", "test:perf": "jest --testPathIgnorePatterns test/{feature,unit}", "test:perf:watch": "jest --testPathIgnorePatterns test/{feature,unit} --watch", "test:all": "jest", "coverage": "jest --testPathIgnorePatterns test/performance --collect-coverage", "docs": "vuepress dev docs", "docs:build": "vuepress build docs", "docs:deploy": "bash ./docs/deploy.sh", "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s", "release": "node scripts/release.js" }, "repository": { "type": "git", "url": "git+https://github.com/vuex-orm/vuex-orm.git" }, "keywords": [ "vue", "vuex", "vuex-plugin", "vuex-orm", "orm" ], "author": "Kia Ishii", "license": "MIT", "bugs": { "url": "https://github.com/vuex-orm/vuex-orm/issues" }, "peerDependencies": { "vuex": ">=3.1.0" }, "dependencies": { "normalizr": "^3.6.0" }, "devDependencies": { "@rollup/plugin-commonjs": "^15.0.0", "@rollup/plugin-node-resolve": "^9.0.0", "@rollup/plugin-replace": "^2.3.1", "@types/jest": "^26.0.10", "brotli": "^1.3.2", "chalk": "^4.1.0", "codecov": "^3.6.4", "conventional-changelog-cli": "^2.0.31", "core-js": "^2.6.11", "enquirer": "^2.3.4", "execa": "^4.0.0", "jest": "^26.4.2", "prettier": "2.1.0", "rollup": "^2.3.2", "rollup-plugin-terser": "^7.0.0", "rollup-plugin-typescript2": "^0.27.0", "semver": "^7.1.3", "ts-jest": "^26.2.0", "typescript": "^3.8.3", "vue": "^2.6.11", "vue-server-renderer": "^2.6.11", "vuepress": "^1.3.0", "vuepress-theme-vue": "^1.1.0", "vuex": "^3.1.3" } }