-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
43 lines (43 loc) · 1009 Bytes
/
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
{
"name": "tinypng-cli",
"version": "0.0.8",
"description": "Handy command line tool for shrinking PNG images using the TinyPNG API",
"homepage": "https://github.com/websperts/tinypng-cli",
"author": "websperts <[email protected]>",
"repository": {
"type": "git",
"url": "[email protected]:websperts/tinypng-cli.git"
},
"keywords": [
"tinypng",
"shrinking",
"compression",
"cli"
],
"bugs": {
"url": "https://github.com/websperts/tinypng-cli/issues"
},
"main": "tinypng-cli.js",
"license": "MIT",
"dependencies": {
"array-uniq": "^1.0.2",
"chalk": "^1.1.3",
"glob": "^7.0.3",
"md5-file": "^4.0.0",
"minimatch": "^3.0.0",
"minimist": "^1.2.0",
"prettysize": "0.0.3",
"request": "^2.70.0"
},
"preferGlobal": "true",
"bin": {
"tinypng": "tinypng-cli.js"
},
"devDependencies": {
"eslint": "^2.7.0",
"jshint": "^2.9.1"
},
"scripts": {
"test": "jshint tinypng-cli.js && eslint tinypng-cli.js"
}
}