-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.66 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@profullstack/favicon-generator",
"version": "1.2.1",
"description": "Generate PNG icons from an SVG or PNG source for iOS and PWA compatibility",
"type": "module",
"main": "./src/index.js",
"exports": {
".": {
"import": "./src/index.js"
}
},
"bin": {
"fav": "./bin/cli.js"
},
"scripts": {
"test": "mocha test/**/*.test.js",
"test:watch": "mocha test/**/*.test.js --watch",
"test:coverage": "c8 mocha test/**/*.test.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{js,json,md}\"",
"format:check": "prettier --check \"**/*.{js,json,md}\"",
"postinstall": "pnpm dlx @socketsecurity/socket-patch apply --silent --ecosystems npm",
"dependencies": "pnpm dlx @socketsecurity/socket-patch apply --silent --ecosystems npm"
},
"keywords": [
"favicon",
"icon",
"generator",
"svg",
"png",
"ios",
"pwa",
"apple-touch-icon"
],
"author": "profullstack",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"inquirer": "^10.2.2",
"sharp": "^0.33.5"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"c8": "^10.1.2",
"chai": "^5.1.1",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"mocha": "^10.7.3",
"prettier": "^3.3.3"
},
"files": [
"src/",
"bin/",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/profullstack/favicon-generator.git"
},
"bugs": {
"url": "https://github.com/profullstack/favicon-generator/issues"
},
"homepage": "https://github.com/profullstack/favicon-generator#readme"
}