forked from sindresorhus/electron-store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 931 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
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "electron-store",
"version": "3.3.0",
"description": "Simple data persistence for your Electron app or module - Save and load user preferences, app state, cache, etc",
"license": "MIT",
"repository": "sindresorhus/electron-store",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "sindresorhus.com"
},
"scripts": {
"test": "xo && ava && tsd"
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"electron",
"store",
"app",
"config",
"storage",
"conf",
"configuration",
"settings",
"preferences",
"json",
"data",
"persist",
"persistent",
"save"
],
"dependencies": {
"conf": "https://github.com/oscartbeaumont-ext/conf.git",
"type-fest": "^0.3.1"
},
"devDependencies": {
"ava": "^1.4.1",
"electron": "^4.1.4",
"execa": "^1.0.0",
"tsd": "^0.7.2",
"xo": "^0.24.0"
},
"xo": {
"envs": [
"node",
"browser"
]
}
}