-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.81 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "vuex-state-storage-sync",
"version": "1.0.0",
"description": "Synchronization of vuex state and storage",
"author": "AGUMON <[email protected]>",
"license": "MIT",
"source": "src/index.ts",
"main": "dist/vuex-state-stoage-sync.js",
"module": "dist/vuex-state-stoage-sync.es.js",
"unpkg": "dist/vuex-state-stoage-sync.umd.js",
"types": "dist/index.d.ts",
"keywords": [
"vue",
"vuex",
"store",
"state",
"localstorage",
"sessionstorage",
"plugin"
],
"bin": {},
"scripts": {
"build": "rimraf dist && microbundle --external all --name syncStateStorage",
"prepare": "npm run build"
},
"dependencies": {
"deepmerge": "^4.2.2",
"shvl": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"all-contributors-cli": "^6.17.0",
"babel-core": "^6.26.3",
"babel-jest": "^26.1.0",
"bundlesize": "^0.18.0",
"dom-storage": "^2.1.0",
"eslint": "^7.5.0",
"husky": "^4.2.5",
"jest": "^26.1.0",
"microbundle": "^0.12.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"rimraf": "^3.0.2",
"vue": "^2.6.11",
"vuex": "^3.5.1"
},
"peerDependencies": {
"vue": "^2.0.0",
"vuex": "^2.0.0 || ^3.0.0"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"bundlesize": [
{
"path": "./dist/*.js",
"threshold": "800b"
}
],
"husky": {
"hooks": {
"pre-commit": "npm run build && pretty-quick --staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ljlm0402/vuex-state-storage-sync.git"
},
"bugs": {
"url": "https://github.com/ljlm0402/vuex-state-storage-sync/issues"
},
"homepage": "https://github.com/ljlm0402/vuex-state-storage-sync#readme"
}