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

cz

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cz - npm Package Compare versions

Comparing version 1.5.0 to 1.6.0

.babelrc

79

package.json
{
"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

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