@myob-oss/config
Advanced tools
Comparing version 1.0.7 to 1.0.8
{ | ||
"name": "@myob-oss/config", | ||
"version": "1.0.7", | ||
"version": "1.0.8", | ||
"description": "A simple, slightly opinionated, and predictable configuration module for Node.js applications.", | ||
"main": "lib/config-wrapper.js", | ||
"scripts": { | ||
"test": "node_modules/.bin/gulp test", | ||
"cover": "node_modules/.bin/istanbul cover _mocha --config test/.istanbul.yml -- -R dot --recursive && node_modules/.bin/istanbul check-coverage --config test/.istanbul.yml", | ||
"lint": "node_modules/.bin/gulp lint" | ||
"test": "node_modules/.bin/mocha test/lib/*_test.js", | ||
"cover": "node_modules/.bin/nyc --per-file --reporter=html --reporter=text npm run test", | ||
"lint": "node_modules/.bin/eslint lib/*.js test/**/*.js" | ||
}, | ||
@@ -17,18 +17,15 @@ "author": "Damien Whaley <damien.whaley@myob.com>", | ||
"type": "git", | ||
"url": "https://github.com/MYOB-Technology/node-config.git" | ||
"url": "https://github.com/myob-oss/node-config.git" | ||
}, | ||
"license": "MIT", | ||
"dependencies": { | ||
"deepmerge": "^2.1.1", | ||
"json5": "^2.0.1" | ||
"deepmerge": "^3.3.0", | ||
"json5": "^2.1.0" | ||
}, | ||
"devDependencies": { | ||
"eslint": "^5.4.0", | ||
"eslint": "^5.16.0", | ||
"eslint-config-airbnb-base": "^13.1.0", | ||
"eslint-plugin-import": "^2.14.0", | ||
"gulp": "^3.9.1", | ||
"gulp-eslint": "^5.0.0", | ||
"gulp-mocha": "^6.0.0", | ||
"istanbul": "^0.4.5", | ||
"mocha": "^5.2.0", | ||
"eslint-plugin-import": "^2.18.0", | ||
"mocha": "^6.1.4", | ||
"nyc": "^14.1.1", | ||
"should": "^13.2.3" | ||
@@ -35,0 +32,0 @@ }, |
@@ -90,3 +90,3 @@ # @myob-oss/config | ||
To run the coverage scanner and generate coverage report use the following command. It fails if the threshold coverage has not passed. The threshold settings are stored in the file `test/.istanbul.yml`. | ||
To run the coverage scanner and generate coverage report use the following command. It fails if the threshold coverage has not passed. The threshold settings are stored in the file `.nycrc`. Please note that the thresholds configured are per-file. | ||
@@ -99,3 +99,3 @@ ```bash | ||
To run the linting checking run the following command. | ||
To run the linting check run the following command. | ||
@@ -102,0 +102,0 @@ ```bash |
@@ -5,2 +5,3 @@ /* global it:false, describe:false, beforeEach:false */ | ||
const fixtures = require('../fixtures/config_fixtures.js'); | ||
require('should'); | ||
@@ -7,0 +8,0 @@ describe('Config class', () => { |
@@ -5,2 +5,3 @@ /* global it:false, describe:false */ | ||
const config2 = require('../../lib/config-wrapper.js'); | ||
require('should'); | ||
@@ -7,0 +8,0 @@ describe('ConfigWrapper class', () => { |
/* global it:false, describe:false, beforeEach:false */ | ||
const File = require('../../lib/file.js'); | ||
require('should'); | ||
@@ -5,0 +6,0 @@ describe('File class', () => { |
Sorry, the diff of this file is not supported yet
6
17691
16
327
+ Addeddeepmerge@3.3.0(transitive)
- Removeddeepmerge@2.2.1(transitive)
Updateddeepmerge@^3.3.0
Updatedjson5@^2.1.0