UNPKG

vuex-mock-store

Version:

Simple and straightforward mock for Vuex v3.x Store

83 lines (82 loc) 1.84 kB
{ "name": "vuex-mock-store", "version": "0.1.0", "description": "Simple and straightforward mock for Vuex v3.x Store", "main": "src/index.js", "types": "src/index.d.ts", "author": { "name": "Eduardo San Martin Morote", "email": "posva13@gmail.com" }, "scripts": { "lint": "eslint --color --ext=js,html src tests", "unit": "jest", "dev": "yarn run unit --watchAll", "test": "yarn run lint && yarn run unit" }, "files": [ "src", "LICENSE" ], "keywords": [ "vue", "test", "utils", "test-utils", "store", "vuex", "mock", "vuex-mock", "vuex-store-mock", "jest", "vuex-mock-store" ], "license": "MIT", "devDependencies": { "@types/jest": "^29.5.1", "@types/lodash.clonedeep": "^4.5.7", "@vue/test-utils": "^2.3.2", "codecov": "^3.8.3", "eslint": "^8.40.0", "eslint-config-posva": "^4.0.0", "jest": "^29.5.0", "jest-environment-jsdom": "^29.5.0", "vue": "^3.2.47", "vue-template-compiler": "^2.7.14", "vuex": "^4.1.0" }, "repository": { "type": "git", "url": "git+https://github.com/posva/vuex-mock-store.git" }, "bugs": { "url": "https://github.com/posva/vuex-mock-store/issues" }, "jest": { "collectCoverage": true, "moduleFileExtensions": [ "js", "json", "vue" ], "coveragePathIgnorePatterns": [ "<rootDir>/tests/*.js", "<rootDir>/tests/.*.js", "<rootDir>/tests/*/*.js" ], "testEnvironment": "jsdom", "testEnvironmentOptions": { "customExportConditions": [ "node", "node-addons" ] } }, "homepage": "https://github.com/posva/vuex-mock-store#readme", "dependencies": { "lodash.clonedeep": "^4.5.0" }, "peerDependencies": { "@types/jest": ">=27.0.3" } }