Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

jpegtran-bin

Package Overview
Dependencies
Maintainers
3
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jpegtran-bin - npm Package Compare versions

Comparing version 0.1.0 to 0.1.2

build.js

6

lib/jpegtran-bin.js

@@ -6,3 +6,7 @@ var path = require('path');

} else if (process.platform === 'linux') {
exports.path = path.join(__dirname, '../vendor/linux', 'jpegtran');
if (process.arch === 'x64') {
exports.path = path.join(__dirname, '../vendor/linux/x64', 'jpegtran');
} else {
exports.path = path.join(__dirname, '../vendor/linux/x86', 'jpegtran');
}
} else if (process.platform === 'win32') {

@@ -9,0 +13,0 @@ if (process.arch === 'x64') {

73

package.json
{
"name": "jpegtran-bin",
"version": "0.1.0",
"description": "jpegtran (part of libjpeg-turbo) wrapper that makes it seamlessly available as a local dependency on OS X, Linux 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",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "http://sindresorhus.com"
},
"main": "lib/jpegtran-bin.js",
"bin": "bin/jpegtran-bin",
"repository": {
"type": "git",
"url": "git://github.com/yeoman/node-jpegtran-bin.git"
},
"scripts": {
"test": "node node_modules/mocha/bin/mocha test/test-*.js"
},
"engines": {
"node": ">=0.8.0"
},
"licenses": [{
"type": "BSD"
}],
"devDependencies": {
"mocha": "~1.6.0"
}
"name": "jpegtran-bin",
"version": "0.1.2",
"description": "jpegtran (part of libjpeg-turbo) wrapper that makes it seamlessly available as a local dependency on OS X, Linux 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",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "http://sindresorhus.com"
},
"main": "lib/jpegtran-bin.js",
"bin": "bin/jpegtran-bin",
"repository": {
"type": "git",
"url": "git://github.com/yeoman/node-jpegtran-bin.git"
},
"scripts": {
"test": "mocha test/test-*.js",
"postinstall": "node build.js"
},
"engines": {
"node": ">=0.8.0"
},
"licenses": [
{
"type": "BSD"
}
],
"dependencies": {
"colors": "~0.6.0",
"which": "~1.0.5"
},
"devDependencies": {
"mocha": "~1.6.0"
}
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc