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

merge-images

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

merge-images - npm Package Compare versions

Comparing version 1.0.5 to 1.0.6

.nyc_output/33a98d75d20e51690330d039a15f5e4e.json

10

package.json
{
"name": "merge-images",
"version": "1.0.5",
"version": "1.0.6",
"description": "Easily compose images together without messing around with canvas",

@@ -41,6 +41,6 @@ "main": "dist/index.umd.js",

"devDependencies": {
"ava": "^0.19.1",
"ava": "^0.24.0",
"camelcase": "^4.0.0",
"canvas": "^1.6.2",
"coveralls": "^2.11.15",
"coveralls": "^3.0.0",
"datauri": "^1.0.5",

@@ -50,6 +50,6 @@ "eslint-config-xo-lukechilds": "^1.0.0",

"pify": "^3.0.0",
"rollup": "^0.42.0",
"rollup-plugin-buble": "^0.15.0",
"rollup": "^0.52.0",
"rollup-plugin-buble": "^0.18.0",
"xo": "^0.18.2"
}
}

@@ -50,3 +50,3 @@ # merge-images

Those source png images where already the right dimensions to be overlaid on top of each other. You can also supply an array of objects with x/y co-ords to manually position each image:
Those source png images were already the right dimensions to be overlaid on top of each other. You can also supply an array of objects with x/y co-ords to manually position each image:

@@ -53,0 +53,0 @@ ```js

@@ -7,19 +7,19 @@ import buble from 'rollup-plugin-buble';

export default {
entry: 'src/index.js',
input: 'src/index.js',
plugins: [
buble()
],
targets: [
output: [
{
dest: pkg.main,
file: pkg.main,
format: 'umd',
moduleName: camelCase(pkg.name),
sourceMap: true
name: camelCase(pkg.name),
sourcemap: true
},
{
dest: pkg.module,
file: pkg.module,
format: 'es',
sourceMap: true
sourcemap: true
}
]
};

Sorry, the diff of this file is not supported yet

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