forked from jaretburkett/electron-icon-maker
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
47 lines (47 loc) · 1.07 KB
/
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
{
"name": "electron-icon-builder",
"version": "2.0.1",
"description": "An icon generator to generate all the icon files needed for electron packaging",
"author": "Safu9 <[email protected]> (https://github.com/safu9/)",
"license": "MIT",
"engines": {
"node": ">= 10.0.0"
},
"main": "index.js",
"bin": {
"electron-icon-builder": "index.js"
},
"keywords": [
"electron",
"icon",
"builder",
"icns",
"png",
"ico"
],
"homepage": "https://github.com/safu9/electron-icon-builder",
"repository": {
"type": "git",
"url": "git+https://github.com/safu9/electron-icon-builder.git"
},
"bugs": {
"url": "https://github.com/safu9/electron-icon-builder/issues"
},
"scripts": {
"test": "mocha",
"lint": "eslint *.js"
},
"dependencies": {
"args": "^5.0.1",
"icon-gen": "^2.0.0",
"jimp": "^0.16.1"
},
"devDependencies": {
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"mocha": "^8.2.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.2"
}
}