-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
52 lines (52 loc) · 937 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": "grunt-electron",
"version": "13.0.0",
"description": "Package Electron apps",
"license": "MIT",
"repository": "sindresorhus/grunt-electron",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "https://sindresorhus.com"
},
"sideEffects": false,
"engines": {
"node": ">=18"
},
"scripts": {
"test": "xo && grunt"
},
"files": [
"tasks"
],
"keywords": [
"gruntplugin",
"electron",
"package",
"packager",
"build",
"distribute",
"app",
"apps"
],
"dependencies": {
"electron-packager": "^15.1.0"
},
"devDependencies": {
"grunt": "^1.6.1",
"grunt-cli": "^1.4.3",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-nodeunit": "^5.0.0",
"path-exists": "^3.0.0",
"xo": "^0.58.0"
},
"peerDependencies": {
"grunt": ">=1.0.0"
},
"xo": {
"rules": {
"unicorn/prefer-module": "off"
}
}
}