-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
78 lines (78 loc) · 1.95 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "image-res-generator",
"version": "0.7.0",
"description": "Generates icon & splash screen for iOS, Android, PWA's and other major platforms using javascript only.",
"main": "src/index.js",
"preferGlobal": true,
"bin": {
"irgen": "./bin/irgen",
"image-res-generator": "./bin/image-res-generator"
},
"scripts": {
"lint": "eslint -f table \"./src/**/*.js\"",
"test": "echo \"Error: no test specified\" && exit 1",
"res-gen": "./bin/irgen -p android,pwa"
},
"husky": {
"hooks": {
"pre-commit": "eslint -f table \"./src/**/*.js\"",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"repository": {
"type": "git",
"url": "git://github.com/sebinbenjamin/image-res-generator.git"
},
"keywords": [
"cordova",
"ionic",
"pwa",
"phonegap",
"icon",
"splash",
"splashscreen",
"generator",
"cli",
"tool"
],
"author": {
"name": "Sebin Benjamin",
"email": "[email protected]"
},
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/sebinbenjamin/image-res-generator/issues"
},
"homepage": "https://github.com/sebinbenjamin/image-res-generator",
"dependencies": {
"colors": "^1.4.0",
"commander": "^12.1.0",
"fs-extra": "^11.2.0",
"sharp": "^0.33.4"
},
"contributors": [
{
"name": "Sebin Benjamin",
"email": "[email protected]"
},
{
"name": "Olivab",
"email": "[email protected]"
}
],
"devDependencies": {
"@babel/eslint-parser": "^7.25.1",
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.0",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-formatter-table": "^7.32.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.9.0",
"husky": "^9.1.4",
"prettier": "3.3.3"
}
}