forked from mawie81/electron-window-state
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 892 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
{
"name": "electron-window-state",
"version": "5.0.3",
"description": "Simple module that helps to save and restore size and position of Electron windows.",
"license": "MIT",
"repository": "mawie81/electron-window-state",
"main": "index.js",
"author": "Marcel Wiehle",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"test": "xo && ava"
},
"keywords": [
"electron"
],
"files": [
"index.js",
"index.d.ts"
],
"dependencies": {
"jsonfile": "^4.0.0",
"mkdirp": "^0.5.1"
},
"devDependencies": {
"ava": "^0.25.0",
"mockery": "^2.1.0",
"sinon": "^6.1.5",
"xo": "^0.22.0"
},
"xo": {
"space": true,
"ignores": [
"index.d.ts"
],
"rules": {
"brace-style": [
2,
"1tbs",
{
"allowSingleLine": true
}
],
"prefer-object-spread": 0
}
}
}