-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.24 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
{
"name": "rn-icon-gen-tool",
"version": "2.0.0",
"description": "CLI Tool to generate icons for react-native app , Both Android and Ios are supported",
"type": "module",
"main": "./lib/app.js",
"bin": {
"generate-icons": "./bin/index.js"
},
"scripts": {
"start": "npm run build",
"lint": "eslint lib bin"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Salem-Abderaouf/rn-icon-gen-tool.git"
},
"keywords": [
"react-native",
"image",
"ios",
"android",
"platform",
"generator",
"resize"
],
"contributors": [
{
"name": "Selama Salem Abderaouf",
"email": "[email protected]",
"url": "https://github.com/Salem-Abderaouf"
},
{
"name": "Aissaoui Ahmed",
"email": "[email protected]",
"url": "https://github.com/Aissaoui-Ahmed"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/Salem-Abderaouf/rn-icon-gen-tool/issues"
},
"homepage": "https://github.com/Salem-Abderaouf/rn-icon-gen-tool#readme",
"dependencies": {
"sharp": "^0.32.6",
"yargs": "^15.4.1"
},
"devDependencies": {
"eslint": "^7.4.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0"
}
}