-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 885 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 885 Bytes
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
{
"name": "node-pngdefry",
"version": "0.0.6",
"description": "This is a nodejs wrapper for pngdefry command line tool that reverses the optimization XCode does on png images included into iPA files to make the images readable by the browser.",
"main": "./lib/index.js",
"scripts": {
"test": "node tests/test.js",
"install": "node install.js"
},
"dependencies": {
"wget": "*",
"adm-zip": "*"
},
"keywords": [
"png",
"apple",
"ipa"
],
"author": "Mutaz Salahat",
"license": "MIT",
"devDependencies": { "test": ">=0.0.5" },
"repository": {
"type": "git",
"url": "https://github.com/Startappz/NodeJS-PNGDefry.git"
},
"bugs": {
"url": "https://github.com/Startappz/NodeJS-PNGDefry/issues"
},
"homepage": "https://github.com/Startappz/NodeJS-PNGDefry"
}