forked from fadion/vuex-persistfile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 838 Bytes
/
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
{
"name": "vuex-persistfile",
"version": "0.1.4",
"description": "Persist Vuex state in the filesystem for Electron",
"author": "Fadion Dashi <jonidashi@gmail.com>",
"license": "MIT",
"keywords": [
"vue",
"vuex",
"persist",
"electron"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fadion/vuex-persistfile.git"
},
"main": "lib/VuexPersist.js",
"scripts": {
"test": "jest"
},
"engines": {
"node": ">=1.0.0"
},
"dependencies": {
"deepmerge": "^4.0.0"
},
"devDependencies": {
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"jest": "^25.0.0",
"vue": "^2.0.0",
"vuex": "^2.0.0"
},
"peerDependencies": {
"vue": ">=2.0.0",
"vuex": ">=2.0.0"
}
}