forked from websperts/tinypng-cli
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.04 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
{
"name": "tinypng-cli",
"version": "0.0.9",
"description": "Handy command line tool for shrinking PNG images using the TinyPNG API",
"homepage": "https://github.com/websperts/tinypng-cli",
"author": "websperts <hello@websperts.com>",
"repository": {
"type": "git",
"url": "git@github.com: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",
"empty-folder": "^2.0.1",
"glob": "^7.0.3",
"imageinfo": "^1.0.4",
"js-md5": "^0.7.3",
"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.13.1",
"jshint": "^2.9.5"
},
"scripts": {
"test": "jshint tinypng-cli.js && eslint tinypng-cli.js"
}
}