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

ironium

Package Overview
Dependencies
Maintainers
2
Versions
123
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ironium - npm Package Compare versions

Comparing version 4.1.2 to 4.1.3

6

CHANGELOG.md

@@ -0,1 +1,7 @@

# 4.1.3
Ironium will honor `BEANSTALKD_HOSTNAME` and `BEANSTALKD_PORT` environment
variables if present.
# 4.1.2

@@ -2,0 +8,0 @@

2

iron.json

@@ -1,1 +0,1 @@

{"project_id":"563b895873d0cd0005000058","token":"uCJUkl8X8XuHKLTB5VwVVf_0-Ng","host":"mq-aws-us-east-1-1.iron.io"}
{"project_id":"55fac602ece3570006000009","token":"94a1GMz6f_g1EeFAsLcgaIVSZ6k","host":"mq-aws-us-east-1-2.iron.io"}

@@ -49,4 +49,4 @@ 'use strict';

// Beanstalkd
this.host = config.host || BEANSTALKD_HOSTNAME;
this.port = config.port || BEANSTALKD_PORT;
this.host = config.host || process.env.BEANSTALKD_HOSTNAME || BEANSTALKD_HOSTNAME;
this.port = config.port || process.env.BEANSTALKD_PORT || BEANSTALKD_PORT;
this._webhookURL = LOCAL_WEBHOOKURL;

@@ -53,0 +53,0 @@ }

{
"name": "ironium",
"version": "4.1.2",
"version": "4.1.3",
"scripts": {

@@ -24,8 +24,8 @@ "lint": "eslint .",

"devDependencies": {
"eslint": "^3.7.1",
"husky": "^0.11.7",
"ioredis": "^2.3.0",
"mocha": "^3.0.2",
"nock": "^9.0.2",
"timekeeper": "^1.0.0"
"eslint": "^3.7",
"husky": "^0.13",
"ioredis": "^2.3",
"mocha": "^3.0",
"nock": "^9.0",
"timekeeper": "^1.0"
},

@@ -32,0 +32,0 @@ "homepage": "https://www.npmjs.com/package/ironium",

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

before(function(done) {
setTimeout(done, 2000);
setTimeout(done, 3000);
});

@@ -51,0 +51,0 @@

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