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

confabulous

Package Overview
Dependencies
Maintainers
1
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

confabulous - npm Package Compare versions

Comparing version 1.5.3 to 1.5.5

9

CHANGELOG.md
# Change Log
## [1.5.5]
### Updated
- Updated dependencies
## [1.5.4]
### Updated
- Updated dependencies
- Fixed node deprecation warnings in tests
## [1.5.3]

@@ -4,0 +13,0 @@ ### Updated

15

package.json
{
"name": "confabulous",
"version": "1.5.3",
"version": "1.5.5",
"description": "A pluggable, hierarchical, asynchronous config loader and post processor with support for environment variables, command line arguments, json, javascript, http, vault, etcd and postgres",

@@ -10,3 +10,3 @@ "main": "index.js",

"istanbul": "istanbul cover --report html --report lcov _mocha",
"codeclimate": "(test -e .codeclimate && npm run istanbul && source .codeclimate && codeclimate-test-reporter < coverage/lcov.info) || echo skipping codeclimate",
"codeclimate": "(test -e .codeclimate && npm run istanbul && source .codeclimate) || echo skipping codeclimate",
"lint": "eslint .",

@@ -18,5 +18,5 @@ "prepush": "npm run lint && npm test && npm run codeclimate"

"dependencies": {
"async": "^2.5.0",
"async": "^2.6.0",
"camelize": "^1.0.0",
"debug": "^2.6.8",
"debug": "^3.1.0",
"deep-freeze": "0.0.1",

@@ -32,5 +32,4 @@ "flat": "^4.0.0",

"devDependencies": {
"chai": "^4.1.0",
"codeclimate-test-reporter": "^0.5.0",
"eslint": "^4.3.0",
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-config-imperative": "^2.0.1",

@@ -41,3 +40,3 @@ "eslint-plugin-imperative": "^2.0.0",

"lodash.noop": "^3.0.1",
"mocha": "^3.4.2"
"mocha": "^5.1.1"
},

@@ -44,0 +43,0 @@ "directories": {

@@ -61,3 +61,5 @@ var assert = require('chai').assert

config.updated = new Date().toISOString()
fs.writeFile('test/data/config.json', JSON.stringify(config, null, 2))
fs.writeFile('test/data/config.json', JSON.stringify(config, null, 2), function(err) {
assert.ifError(err)
})
}).once('change', done)

@@ -70,3 +72,5 @@ })

assert.ifError(err)
fs.unlink(doomed)
fs.unlink(doomed, function(err) {
assert.ifError(err)
})
}).once('change', done)

@@ -73,0 +77,0 @@ })

@@ -59,3 +59,5 @@ var assert = require('chai').assert

config.updated = new Date().toISOString()
fs.writeFile('test/data/config.json', JSON.stringify(config, null, 2))
fs.writeFile('test/data/config.json', JSON.stringify(config, null, 2), function(err) {
assert.ifError(err)
})
}).once('change', done)

@@ -68,3 +70,5 @@ })

assert.ifError(err)
fs.unlink(doomed)
fs.unlink(doomed, function(err) {
assert.ifError(err)
})
}).once('change', done)

@@ -71,0 +75,0 @@ })

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