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

hummus

Package Overview
Dependencies
Maintainers
1
Versions
117
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hummus - npm Package Compare versions

Comparing version 1.0.60 to 1.0.61

node_modules/node-pre-gyp/node_modules/mkdirp/.travis.yml

0

hummus.js

@@ -0,0 +0,0 @@ var fs = require('fs');

46

node_modules/node-pre-gyp/CHANGELOG.md
# node-pre-gyp changelog
## 0.6.29
- Add known node versions for v0.10.45, v0.12.14, v4.4.4, v5.11.1, and v6.1.0
## 0.6.28
- Now more verbose when remote binaries are not available. This is needed since npm is increasingly more quiet by default
and users need to know why builds are falling back to source compiles that might then error out.
## 0.6.27
- Add known node version for node v6
- Stopped bundling dependencies
- Documented method for module authors to avoid bundling node-pre-gyp
- See https://github.com/mapbox/node-pre-gyp/tree/master#configuring for details
## 0.6.26
- Skip validation for nw runtime (https://github.com/mapbox/node-pre-gyp/pull/181) via @fleg
## 0.6.25
- Improved support for auto-detection of electron runtime in `node-pre-gyp.find()`
- Pull request from @enlight - https://github.com/mapbox/node-pre-gyp/pull/187
- Add known node version for 4.4.1 and 5.9.1
## 0.6.24
- Add known node version for 5.8.0, 5.9.0, and 4.4.0.
## 0.6.23
- Add known node version for 0.10.43, 0.12.11, 4.3.2, and 5.7.1.
## 0.6.22
- Add known node version for 4.3.1, and 5.7.0.
## 0.6.21
- Add known node version for 0.10.42, 0.12.10, 4.3.0, and 5.6.0.
## 0.6.20
- Add known node version for 4.2.5, 4.2.6, 5.4.0, 5.4.1,and 5.5.0.
## 0.6.19

@@ -50,0 +4,0 @@

@@ -115,12 +115,2 @@ "use strict";

function print_fallback_error(err,opts,package_json) {
var fallback_message = ' (falling back to source compile with node-gyp)';
var full_message = "Pre-built binaries not found for " + package_json.name + "@" + package_json.version;
full_message += " and " + opts.runtime + "@" + (opts.target || process.versions.node) + " (" + opts.node_abi + " ABI)";
full_message += fallback_message;
log.error("Tried to download: " + opts.hosted_tarball);
log.error(full_message);
log.http(err.message);
}
function install(gyp, argv, callback) {

@@ -165,3 +155,3 @@ var package_json = JSON.parse(fs.readFileSync('./package.json'));

if (should_do_fallback_build) {
print_fallback_error(err,opts,package_json);
log.http(err.message + ' (falling back to source compile with node-gyp)');
return do_build(gyp,argv,callback);

@@ -186,3 +176,3 @@ } else {

if (err && should_do_fallback_build) {
print_fallback_error(err,opts,package_json);
log.http(err.message + ' (falling back to source compile with node-gyp)');
return do_build(gyp,argv,callback);

@@ -189,0 +179,0 @@ } else if (err) {

@@ -23,11 +23,2 @@ "use strict";

var nw = (opts.runtime && opts.runtime === 'node-webkit');
if ((process.arch != opts.target_arch) ||
(process.platform != opts.target_platform)) {
var msg = "skipping validation since host platform/arch (";
msg += process.platform+'/'+process.arch+")";
msg += " does not match target (";
msg += opts.target_platform+'/'+opts.target_arch+")";
log.info('validate', msg);
return callback();
}
if (nw) {

@@ -65,2 +56,11 @@ options.timeout = 5000;

}
if ((process.arch != opts.target_arch) ||
(process.platform != opts.target_platform)) {
var msg = "skipping validation since host platform/arch (";
msg += process.platform+'/'+process.arch+")";
msg += " does not match target (";
msg += opts.target_platform+'/'+opts.target_arch+")";
log.info('validate', msg);
return callback();
}
args.push('--eval');

@@ -67,0 +67,0 @@ args.push("'require(\\'" + binary_module.replace(/\'/g, '\\\'') +"\\')'");

@@ -127,15 +127,15 @@ {

"0.1.101": {
"node_abi": null,
"node_abi": 1,
"v8": "2.3"
},
"0.1.102": {
"node_abi": null,
"node_abi": 1,
"v8": "2.3"
},
"0.1.103": {
"node_abi": null,
"node_abi": 1,
"v8": "2.3"
},
"0.1.104": {
"node_abi": null,
"node_abi": 1,
"v8": "2.3"

@@ -779,22 +779,2 @@ },

},
"0.10.42": {
"node_abi": 11,
"v8": "3.14"
},
"0.10.43": {
"node_abi": 11,
"v8": "3.14"
},
"0.10.44": {
"node_abi": 11,
"v8": "3.14"
},
"0.10.45": {
"node_abi": 11,
"v8": "3.14"
},
"0.10.46": {
"node_abi": 11,
"v8": "3.14"
},
"0.11.0": {

@@ -908,26 +888,2 @@ "node_abi": 12,

},
"0.12.10": {
"node_abi": 14,
"v8": "3.28"
},
"0.12.11": {
"node_abi": 14,
"v8": "3.28"
},
"0.12.12": {
"node_abi": 14,
"v8": "3.28"
},
"0.12.13": {
"node_abi": 14,
"v8": "3.28"
},
"0.12.14": {
"node_abi": 14,
"v8": "3.28"
},
"0.12.15": {
"node_abi": 14,
"v8": "3.28"
},
"1.0.0": {

@@ -1133,50 +1089,2 @@ "node_abi": 42,

},
"4.2.5": {
"node_abi": 46,
"v8": "4.5"
},
"4.2.6": {
"node_abi": 46,
"v8": "4.5"
},
"4.3.0": {
"node_abi": 46,
"v8": "4.5"
},
"4.3.1": {
"node_abi": 46,
"v8": "4.5"
},
"4.3.2": {
"node_abi": 46,
"v8": "4.5"
},
"4.4.0": {
"node_abi": 46,
"v8": "4.5"
},
"4.4.1": {
"node_abi": 46,
"v8": "4.5"
},
"4.4.2": {
"node_abi": 46,
"v8": "4.5"
},
"4.4.3": {
"node_abi": 46,
"v8": "4.5"
},
"4.4.4": {
"node_abi": 46,
"v8": "4.5"
},
"4.4.5": {
"node_abi": 46,
"v8": "4.5"
},
"4.4.6": {
"node_abi": 46,
"v8": "4.5"
},
"5.0.0": {

@@ -1201,79 +1109,3 @@ "node_abi": 47,

"v8": "4.6"
},
"5.4.0": {
"node_abi": 47,
"v8": "4.6"
},
"5.4.1": {
"node_abi": 47,
"v8": "4.6"
},
"5.5.0": {
"node_abi": 47,
"v8": "4.6"
},
"5.6.0": {
"node_abi": 47,
"v8": "4.6"
},
"5.7.0": {
"node_abi": 47,
"v8": "4.6"
},
"5.7.1": {
"node_abi": 47,
"v8": "4.6"
},
"5.8.0": {
"node_abi": 47,
"v8": "4.6"
},
"5.9.0": {
"node_abi": 47,
"v8": "4.6"
},
"5.9.1": {
"node_abi": 47,
"v8": "4.6"
},
"5.10.0": {
"node_abi": 47,
"v8": "4.6"
},
"5.10.1": {
"node_abi": 47,
"v8": "4.6"
},
"5.11.0": {
"node_abi": 47,
"v8": "4.6"
},
"5.11.1": {
"node_abi": 47,
"v8": "4.6"
},
"5.12.0": {
"node_abi": 47,
"v8": "4.6"
},
"6.0.0": {
"node_abi": 48,
"v8": "5.0"
},
"6.1.0": {
"node_abi": 48,
"v8": "5.0"
},
"6.2.0": {
"node_abi": 48,
"v8": "5.0"
},
"6.2.1": {
"node_abi": 48,
"v8": "5.0"
},
"6.2.2": {
"node_abi": 48,
"v8": "5.0"
}
}

@@ -28,3 +28,3 @@ "use strict";

}
// Electron guarantees that patch version update won't break native modules.
// Electron guarentees that patch version update won't break native modules.
var sem_ver = semver.parse(target_version);

@@ -245,14 +245,2 @@ return runtime + '-v' + sem_ver.major + '.' + sem_ver.minor;

function get_process_runtime(versions) {
var runtime = 'node';
if (versions['node-webkit']) {
runtime = 'node-webkit';
} else if (versions.electron) {
runtime = 'electron';
}
return runtime;
}
module.exports.get_process_runtime = get_process_runtime;
var default_package_name = '{module_name}-v{version}-{node_abi}-{platform}-{arch}.tar.gz';

@@ -266,3 +254,3 @@ var default_remote_path = '';

var module_version = semver.parse(v);
var runtime = options.runtime || get_process_runtime(process.versions);
var runtime = options.runtime || (process.versions['node-webkit'] ? 'node-webkit' : 'node');
var opts = {

@@ -269,0 +257,0 @@ name: package_json.name,

{
"_args": [
[
"node-pre-gyp@^0.6.13",
"D:\\users\\gal kahana\\Documents\\GitHub\\HummusJS"
]
"name": "node-pre-gyp",
"description": "Node.js native addon binary install tool",
"version": "0.6.19",
"keywords": [
"native",
"addon",
"module",
"c",
"c++",
"bindings",
"binary"
],
"_from": "node-pre-gyp@>=0.6.13 <0.7.0",
"_id": "node-pre-gyp@0.6.29",
"_inCache": true,
"_installable": true,
"_location": "/node-pre-gyp",
"_nodeVersion": "4.4.5",
"_npmOperationalInternal": {
"host": "packages-12-west.internal.npmjs.com",
"tmp": "tmp/node-pre-gyp-0.6.29.tgz_1467142616046_0.945712324930355"
"license": "BSD",
"author": {
"name": "Dane Springmeyer",
"email": "dane@mapbox.com"
},
"_npmUser": {
"email": "dane@mapbox.com",
"name": "springmeyer"
"repository": {
"type": "git",
"url": "git://github.com/mapbox/node-pre-gyp.git"
},
"_npmVersion": "2.15.5",
"_phantomChildren": {},
"_requested": {
"name": "node-pre-gyp",
"raw": "node-pre-gyp@^0.6.13",
"rawSpec": "^0.6.13",
"scope": null,
"spec": ">=0.6.13 <0.7.0",
"type": "range"
},
"_requiredBy": [
"/"
],
"_resolved": "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.6.29.tgz",
"_shasum": "b0bd13635baf7d1be7ae233c16fbcf3309acd37c",
"_shrinkwrap": null,
"_spec": "node-pre-gyp@^0.6.13",
"_where": "D:\\users\\gal kahana\\Documents\\GitHub\\HummusJS",
"author": {
"email": "dane@mapbox.com",
"name": "Dane Springmeyer"
},
"bin": {
"node-pre-gyp": "./bin/node-pre-gyp"
},
"bugs": {
"url": "https://github.com/mapbox/node-pre-gyp/issues"
},
"main": "./lib/node-pre-gyp.js",
"dependencies": {
"mkdirp": "~0.5.0",
"nopt": "~3.0.1",
"npmlog": "~3.1.2",
"rc": "~1.1.0",
"npmlog": "~2.0.0",
"request": "2.x",
"rimraf": "~2.5.0",
"semver": "~5.2.0",
"semver": "~5.1.0",
"tar": "~2.2.0",
"tar-pack": "~3.1.0"
"tar-pack": "~3.1.0",
"mkdirp": "~0.5.0",
"rc": "~1.1.0",
"rimraf": "~2.5.0"
},
"description": "Node.js native addon binary install tool",
"devDependencies": {
"aws-sdk": "2.x",
"jshint": "2.x",
"mocha": "2.x",
"retire": "1.x"
"aws-sdk": "*",
"mocha": "1.x",
"retire": "0.3.x",
"jshint": "^2.5.10"
},
"directories": {},
"dist": {
"shasum": "b0bd13635baf7d1be7ae233c16fbcf3309acd37c",
"tarball": "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.6.29.tgz"
},
"gitHead": "3733536bf8947ee9dd18c8d46b0f964f0e41db8e",
"homepage": "https://github.com/mapbox/node-pre-gyp#readme",
"jshintConfig": {
"node": true,
"globalstrict": true,
"mocha": true,
"undef": true,
"unused": true,
"noarg": true,
"node": true,
"undef": true,
"unused": true
"mocha": true
},
"keywords": [
"addon",
"binary",
"bindings",
"c",
"c++",
"module",
"native"
"engineStrict": true,
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"prepublish": "retire -n && npm ls && jshint test/build.test.js test/s3_setup.test.js test/versioning.test.js",
"update-crosswalk": "node scripts/abi_crosswalk.js",
"test": "jshint lib lib/util scripts bin/node-pre-gyp && mocha -R spec --timeout 500000"
},
"gitHead": "15602cf1eba0e3ce702b75a341116d7a376ad7c9",
"bugs": {
"url": "https://github.com/mapbox/node-pre-gyp/issues"
},
"homepage": "https://github.com/mapbox/node-pre-gyp",
"bundleDependencies": [
"nopt",
"npmlog",
"request",
"semver",
"tar",
"tar-pack",
"mkdirp",
"rc",
"rimraf"
],
"license": "BSD-3-Clause",
"main": "./lib/node-pre-gyp.js",
"_id": "node-pre-gyp@0.6.19",
"_shasum": "842badff2e9c423c5a817e068ffe8f8487dc1016",
"_from": "node-pre-gyp@>=0.6.13 <0.7.0",
"_npmVersion": "1.4.28",
"_npmUser": {
"name": "springmeyer",
"email": "dane@mapbox.com"
},
"maintainers": [

@@ -116,15 +107,9 @@ {

],
"name": "node-pre-gyp",
"optionalDependencies": {},
"readme": "ERROR: No README data found!",
"repository": {
"type": "git",
"url": "git://github.com/mapbox/node-pre-gyp.git"
"dist": {
"shasum": "842badff2e9c423c5a817e068ffe8f8487dc1016",
"tarball": "http://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.6.19.tgz"
},
"scripts": {
"prepublish": "retire -n && npm ls && jshint test/build.test.js test/s3_setup.test.js test/versioning.test.js",
"test": "jshint lib lib/util scripts bin/node-pre-gyp && mocha -R spec --timeout 500000",
"update-crosswalk": "node scripts/abi_crosswalk.js"
},
"version": "0.6.29"
"directories": {},
"_resolved": "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.6.19.tgz",
"readme": "ERROR: No README data found!"
}
{
"name": "hummus",
"version": "1.0.60",
"version": "1.0.61",
"description": "Create, read and modify PDF files and streams",

@@ -5,0 +5,0 @@ "homepage": "http://pdfhummus.com/",

@@ -0,0 +0,0 @@ var fs = require('fs');

@@ -0,0 +0,0 @@ /*

@@ -0,0 +0,0 @@ var fs = require('fs');

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

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

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

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

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

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

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

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

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

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

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

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