-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 868 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
44
{
"name": "gulp-smushit",
"version": "1.2.0",
"description": "Gulp plugin to optimize PNG and JPG using reSmush.it",
"license": "MIT",
"repository": "heldr/gulp-smushit",
"author": {
"name": "Helder Santana",
"email": "helder.css@gmail.com",
"url": "https://github.com/heldr"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"spec": "mocha --timeout 5000",
"lint": "jshint index.js",
"test": "npm run lint && npm run spec"
},
"files": [
"index.js"
],
"keywords": [
"gulpplugin",
"smushit",
"png",
"jpg",
"gif",
"image optimizer",
"compress image",
"image",
"web performance",
"webperf"
],
"dependencies": {
"gulp-util": "^3.0.7",
"smosh": "^1.2.0",
"through2": "^2.0.1"
},
"devDependencies": {
"jshint": "^2.9.1",
"mocha": "^2.4.5"
}
}