81 lines
2.0 KiB
JSON
81 lines
2.0 KiB
JSON
{
|
|
"name": "vuex-persistedstate",
|
|
"description": "Persist and rehydrate your Vuex state between page reloads.",
|
|
"version": "2.7.1",
|
|
"license": "MIT",
|
|
"author": "Robin van der Vleuten <robin@webstronauts.co> (robinvdvleuten.nl)",
|
|
"keywords": [
|
|
"vue",
|
|
"vuex",
|
|
"plugin"
|
|
],
|
|
"homepage": "https://github.com/robinvdvleuten/vuex-persistedstate#readme",
|
|
"repository": "robinvdvleuten/vuex-persistedstate",
|
|
"bugs": {
|
|
"url": "https://github.com/robinvdvleuten/vuex-persistedstate/issues"
|
|
},
|
|
"main": "dist/vuex-persistedstate.js",
|
|
"module": "dist/vuex-persistedstate.es.js",
|
|
"jsnext:main": "dist/vuex-persistedstate.es.js",
|
|
"umd:main": "dist/vuex-persistedstate.umd.js",
|
|
"typings": "./index.d.ts",
|
|
"files": [
|
|
"dist",
|
|
"index.d.ts",
|
|
"index.js"
|
|
],
|
|
"scripts": {
|
|
"build": "rimraf dist && microbundle --external all --name createPersistedState index.js",
|
|
"prepare": "npm run build",
|
|
"test": "npm-run-all test:**",
|
|
"test:jest": "jest --env=jsdom",
|
|
"test:size": "bundlesize"
|
|
},
|
|
"babel": {
|
|
"presets": [
|
|
"@babel/preset-env"
|
|
]
|
|
},
|
|
"bundlesize": [
|
|
{
|
|
"path": "./dist/*.js",
|
|
"threshold": "800b"
|
|
}
|
|
],
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "npm run build && pretty-quick --staged"
|
|
}
|
|
},
|
|
"jest": {
|
|
"testURL": "http://localhost/"
|
|
},
|
|
"dependencies": {
|
|
"deepmerge": "^4.2.2",
|
|
"shvl": "^2.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.0.0",
|
|
"@babel/preset-env": "^7.0.0",
|
|
"all-contributors-cli": "^6.9.3",
|
|
"babel-core": "^7.0.0-bridge.0",
|
|
"babel-jest": "^24.9.0",
|
|
"bundlesize": "^0.18.0",
|
|
"dom-storage": "^2.0.2",
|
|
"eslint": "^6.6.0",
|
|
"husky": "^4.2.1",
|
|
"jest": "^24.9.0",
|
|
"microbundle": "^0.11.0",
|
|
"npm-run-all": "^4.1.2",
|
|
"prettier": "^1.8.2",
|
|
"pretty-quick": "^2.0.0",
|
|
"rimraf": "^3.0.0",
|
|
"vue": "^2.5.15",
|
|
"vuex": "^3.0.1"
|
|
},
|
|
"peerDependencies": {
|
|
"vue": "^2.0.0",
|
|
"vuex": "^2.0.0 || ^3.0.0"
|
|
}
|
|
}
|