-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
50 lines (50 loc) · 982 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
{
"name": "png-to-ico",
"version": "2.1.8",
"description": "convert png to windows ico format",
"main": "index.js",
"engines": {
"node": ">=8"
},
"bin": {
"png-to-ico": "bin/cli.js"
},
"files": [
"bin/*",
"lib/*",
"*.md",
"index.d.ts"
],
"typings": "index.d.ts",
"scripts": {
"test": "jest test/*.test.js",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/steambap/png-to-ico.git"
},
"keywords": [
"png",
"ico",
"favicon",
"favicon-generator",
"fast",
"convert"
],
"author": "Weilin Shi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/steambap/png-to-ico/issues"
},
"homepage": "https://github.com/steambap/png-to-ico#readme",
"dependencies": {
"@types/node": "^22.10.3",
"minimist": "^1.2.8",
"pngjs": "^7.0.0"
},
"devDependencies": {
"eslint": "^8.56.0",
"jest": "^29.7.0"
}
}