-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 993 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
{
"name": "electron-windows",
"version": "18.4.0",
"description": "Manage multiple windows of Electron gracefully and provides powerful features.",
"keywords": [
"electron",
"window",
"windows"
],
"files": [
"lib"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/electron-modules/electron-windows.git"
},
"dependencies": {
"electron": "18",
"electron-window-state": "^5.0.3",
"lodash": "4"
},
"devDependencies": {
"electron-json-storage-alt": "18",
"eslint": "7",
"eslint-config-egg": "^5.1.1",
"eslint-plugin-mocha": "^4.11.0",
"git-contributor": "*",
"husky": "*",
"mocha": "*",
"nyc": "*"
},
"scripts": {
"dev": "electron ./start.js",
"test": "nyc --reporter=lcov --reporter=text mocha",
"lint": "eslint . --fix",
"contributor": "git-contributor"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"license": "MIT"
}