forked from imagemin/jpegtran-bin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.24 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.24 KB
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
49
50
51
52
53
54
55
56
57
{
"name": "jpegtran-bin",
"version": "0.2.0",
"description": "jpegtran (part of libjpeg-turbo) wrapper that makes it seamlessly available as a local dependency on OS X, Linux, FreeBSD, Solaris and Windows. Most commonly used to losslessly minify JPEG images.",
"keywords": [
"jpeg",
"jpg",
"img",
"image",
"compress",
"minify",
"optimize"
],
"homepage": "https://github.com/yeoman/node-jpegtran-bin",
"bugs": "https://github.com/yeoman/node-jpegtran-bin/issues",
"license": "BSD",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "http://sindresorhus.com"
},
"maintainers": [
{
"name": "Duncan Wong"
}
],
"main": "lib/jpegtran",
"bin": {
"jpegtran": "bin/jpegtran.js"
},
"repository": {
"type": "git",
"url": "git://github.com/yeoman/node-jpegtran-bin.git"
},
"scripts": {
"test": "mocha",
"postinstall": "node pre-build.js"
},
"engines": {
"node": ">=0.8.0"
},
"dependencies": {
"which": "~1.0.5",
"mocha": "~1.12.0",
"tar": "~0.1.17",
"request": "~2.26.0",
"chalk": "~0.2.0",
"mkdirp": "~0.3.5"
},
"files": [
"bin",
"lib",
"test",
"build.js",
"pre-build.js"
]
}