confabulous
Advanced tools
Comparing version 1.5.3 to 1.5.5
# 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 |
{ | ||
"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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
42240
8
776
43
1
+ Addeddebug@3.2.7(transitive)
+ Addedms@2.1.3(transitive)
- Removeddebug@2.6.9(transitive)
- Removedms@2.0.0(transitive)
Updatedasync@^2.6.0
Updateddebug@^3.1.0