forked from sindresorhus/electron-store
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 998 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
53
{
"name": "electron-store-atomically",
"version": "0.0.3",
"description": "Simple data persistence for your Electron app or module - Save and load user preferences, app state, cache, etc with atomically",
"license": "MIT",
"repository": "jurepetrovic/electron-store-atomically",
"funding": "https://github.com/sponsors/jurepetrovic",
"author": {
"name": "Jure Petrovic",
"email": "[email protected]",
"url": "https://www.enerco.si"
},
"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-atomically": "0.0.3",
"type-fest": "^0.7.1"
},
"devDependencies": {
"ava": "^2.1.0",
"electron": "^6.0.7",
"execa": "^2.0.4",
"tsd": "^0.11.0",
"xo": "^0.24.0"
},
"xo": {
"envs": [
"node",
"browser"
]
}
}