forked from nathanbuchar/electron-settings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 975 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
{
"name": "electron-settings",
"version": "1.1.1",
"description": "User settings manager for Electron",
"main": "index.js",
"scripts": {
"test": "mocha test"
},
"keywords": [
"electron",
"settings",
"manager",
"user"
],
"repository": {
"type": "git",
"url": "https://github.com/nathanbuchar/electron-settings"
},
"author": "Nathan Buchar <[email protected]>",
"contributors": [
{
"name": "Nathan Buchar",
"email": "[email protected]",
"web": "http://nathanbuchar,com/"
},
{
"name": "Kai Eichinger",
"email": "[email protected]"
}
],
"license": "ISC",
"dependencies": {
"debug": "^2.2.0",
"deep-diff": "^0.3.3",
"ensure-array": "0.0.5",
"fs-extra": "^0.26.0",
"key-mirror": "^1.0.1",
"lodash": "^3.10.1",
"minimatch": "^3.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.4.5",
"tmp": "0.0.28"
}
}