Comparing version 1.5.0 to 1.6.0
{ | ||
"name": "cz", | ||
"version": "1.5.0", | ||
"description": "A simple config utility for nodejs", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/OmgImAlexis/cz.git" | ||
}, | ||
"keywords": [ | ||
"config", | ||
"utility", | ||
"simple", | ||
"configuration", | ||
"tool" | ||
], | ||
"author": "X O <xo@wvvw.me> (https://wvvw.me)", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/OmgImAlexis/cz/issues" | ||
}, | ||
"homepage": "https://github.com/OmgImAlexis/cz#readme" | ||
"name": "cz", | ||
"version": "1.6.0", | ||
"description": "A simple config utility for nodejs", | ||
"main": "lib/index.js", | ||
"scripts": { | ||
"test": "xo && npm run compile && mocha --compilers js:babel-core/register ./test/**/*", | ||
"compile": "babel -d lib/ src/", | ||
"prepublish": "npm run compile" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/OmgImAlexis/cz.git" | ||
}, | ||
"keywords": [ | ||
"config", | ||
"utility", | ||
"simple", | ||
"configuration", | ||
"tool" | ||
], | ||
"author": "X O <xo@wvvw.me> (https://wvvw.me)", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/OmgImAlexis/cz/issues" | ||
}, | ||
"homepage": "https://github.com/OmgImAlexis/cz#readme", | ||
"dependencies": { | ||
"lodash": "^4.17.4" | ||
}, | ||
"devDependencies": { | ||
"babel-cli": "^6.24.1", | ||
"babel-core": "^6.24.1", | ||
"babel-preset-es2015": "^6.24.1", | ||
"babel-preset-stage-2": "^6.24.1", | ||
"chai": "^3.5.0", | ||
"mocha": "^3.2.0", | ||
"xo": "^0.18.1" | ||
}, | ||
"xo": { | ||
"space": 4, | ||
"ignores": [ | ||
"lib/**/*" | ||
], | ||
"rules": { | ||
"space-before-function-paren": [ | ||
"error", | ||
"never" | ||
] | ||
}, | ||
"envs": [ | ||
"node", | ||
"es6", | ||
"mocha" | ||
] | ||
} | ||
} |
@@ -11,3 +11,3 @@ # cz | ||
````js | ||
var config = require('./index.js'); | ||
var config = require('cz'); | ||
var path = require('path'); | ||
@@ -14,0 +14,0 @@ config.load(path.normalize(__dirname + '/config.json')); // This loads the config file |
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
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
No tests
QualityPackage does not have any tests. This is a strong signal of a poorly maintained or low quality package.
Found 1 instance in 1 package
253195
10
215
0
1
7
1
+ Addedlodash@^4.17.4
+ Addedlodash@4.17.21(transitive)