-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.34 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
{
"name": "react-native-image-resource-generator",
"version": "1.0.2",
"description": "React Native image resource generator CLI tool",
"main": "bin/index.js",
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"img-res-gen": "bin/index.js"
},
"files": [
"/bin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/svbutko/react-native-image-resource-generator.git"
},
"keywords": [
"react-native",
"image",
"resources",
"generator",
"cli-tool"
],
"author": "Sergei Butko (https://twitter.com/@svbutko)",
"license": "MIT",
"bugs": {
"url": "https://github.com/svbutko/react-native-image-resource-generator/issues"
},
"homepage": "https://github.com/svbutko/react-native-image-resource-generator#readme",
"contributors": [
{
"name": "Sergei Butko",
"url": "https://twitter.com/@svbutko"
},
{
"name": "Igor Antsiferov",
"url": "https://github.com/foerra"
}
],
"dependencies": {
"command-line-args": "^5.2.1",
"command-line-usage": "^6.1.3",
"transliteration": "^2.2.0"
},
"devDependencies": {
"@types/command-line-args": "^5.2.0",
"@types/command-line-usage": "^5.0.2",
"@types/node": "^17.0.36",
"prettier": "^2.6.2",
"typescript": "^4.7.2"
}
}