forked from creativeaura/gulp-tinypng
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 908 Bytes
/
package.json
File metadata and controls
48 lines (48 loc) · 908 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "gulp-tinypng",
"version": "1.0.2",
"description": "gulp plugin to compress png images using tinypng api",
"main": "index.js",
"repository": "creativeaura/gulp-tinypng",
"scripts": {
"test": "mocha"
},
"files": [
"index.js"
],
"author": {
"name": "Gaurav Jassal",
"email": "gaurav@jassal.me",
"url": "http://gaurav.jassal.me"
},
"keywords": [
"gulpplugin",
"tinypng",
"image",
"img",
"picture",
"photo",
"minify",
"minifier",
"compress",
"png"
],
"engines": {
"node": ">=0.10.0"
},
"license": "MIT",
"dependencies": {
"gulp-util": "~2.2.14",
"gulp": "~3.3.4",
"event-stream": "~3.1.0",
"request": "~2.31.0",
"vinyl": "~0.2.3",
"mkdirp": "~0.3.5",
"rmdir": "~1.0.4",
"through2": "~0.4.1",
"pretty-bytes": "~0.1.2"
},
"devDependencies": {
"mocha": "*"
}
}