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

impro

Package Overview
Dependencies
Maintainers
2
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

impro - npm Package Compare versions

Comparing version 0.5.0 to 0.5.1

8

package.json
{
"name": "impro",
"version": "0.5.0",
"version": "0.5.1",
"description": "Image processing engine",

@@ -27,3 +27,3 @@ "author": "Andreas Lind <andreaslindpetersen@gmail.com>",

"devDependencies": {
"animated-gif-detector": "1.1.7",
"animated-gif-detector": "1.2.0",
"coveralls": "^3.0.6",

@@ -52,3 +52,3 @@ "eslint": "^6.3.0",

"prettier": "~1.19.0",
"sharp": "0.23.0",
"sharp": "~0.23.0",
"sinon": "1.17.7",

@@ -67,3 +67,3 @@ "svgfilter": "3.0.0",

"exif-reader": "^1.0.3",
"icc": "0.0.2",
"icc": "^1.0.0",
"lodash": "^4.17.15",

@@ -70,0 +70,0 @@ "mime": "^1.6.0",

@@ -116,16 +116,18 @@ const requireOr = require('require-or');

unavailable: !gm,
operations: [
'extract',
'progressive',
'withoutEnlargement',
'ignoreAspectRatio'
].concat(
Object.keys(gm.prototype).filter(function(propertyName) {
return (
!/^_|^(?:name|emit|.*Listeners?|on|once|size|orientation|format|depth|color|res|filesize|identity|write|stream|type|setmoc)$/.test(
propertyName
) && typeof gm.prototype[propertyName] === 'function'
);
})
),
operations: !gm
? []
: [
'extract',
'progressive',
'withoutEnlargement',
'ignoreAspectRatio'
].concat(
Object.keys(gm.prototype).filter(function(propertyName) {
return (
!/^_|^(?:name|emit|.*Listeners?|on|once|size|orientation|format|depth|color|res|filesize|identity|write|stream|type|setmoc)$/.test(
propertyName
) && typeof gm.prototype[propertyName] === 'function'
);
})
),
inputTypes: ['gif', 'jpeg', 'png', 'ico', 'tga', 'tiff', '*'],

@@ -132,0 +134,0 @@ outputTypes: ['gif', 'jpeg', 'png', 'tga', 'tiff', 'webp'],

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