New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

pngcrush-bin

Package Overview
Dependencies
Maintainers
4
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pngcrush-bin - npm Package Compare versions

Comparing version

to
3.1.0

1

cli.js

@@ -6,2 +6,3 @@ #!/usr/bin/env node

var pngcrush = require('./');
var input = process.argv.slice(2);

@@ -8,0 +9,0 @@

@@ -6,2 +6,3 @@ 'use strict';

var pkg = require('../package.json');
var url = 'https://raw.githubusercontent.com/imagemin/pngcrush-bin/v' + pkg.version + '/vendor/';

@@ -8,0 +9,0 @@

2

lib/install.js

@@ -14,3 +14,3 @@ 'use strict';

var builder = new BinBuild()
.src('http://downloads.sourceforge.net/project/pmt/pngcrush/1.7.85/pngcrush-1.7.85.zip')
.src('https://downloads.sourceforge.net/project/pmt/pngcrush/1.8.10/pngcrush-1.8.10.zip')
.cmd('mkdir -p ' + bin.dest())

@@ -17,0 +17,0 @@ .cmd('make && mv ' + bin.use() + ' ' + bin.path());

{
"name": "pngcrush-bin",
"version": "3.0.0",
"version": "3.1.0",
"description": "pngcrush wrapper that makes it seamlessly available as a local dependency",

@@ -10,4 +10,20 @@ "license": "MIT",

"email": "shogo.sensui@gmail.com",
"url": "http://github.com/1000ch"
"url": "github.com/1000ch"
},
"maintainers": [
{
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com"
},
{
"name": "Kevin Mårtensson",
"email": "kevinmartensson@gmail.com",
"url": "github.com/kevva"
},
{
"name": "Shinnosuke Watanabe",
"url": "github.com/shinnn"
}
],
"engines": {

@@ -21,3 +37,3 @@ "node": ">=0.10.0"

"postinstall": "node lib/install.js",
"test": "mocha --timeout 50000"
"test": "xo && mocha --timeout 50000"
},

@@ -50,4 +66,5 @@ "files": [

"mocha": "^2.2.4",
"rimraf": "^2.3.2"
"rimraf": "^2.3.2",
"xo": "*"
}
}