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

coins-validate

Package Overview
Dependencies
Maintainers
6
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

coins-validate - npm Package Compare versions

Comparing version 3.0.1 to 4.0.0

.eslintignore

6

.eslintrc.js

@@ -13,7 +13,9 @@ module.exports = {

mocha: true,
es6: true
es6: true,
},
rules: {
strict: [0, 'global'] // required for node, configurable for browser, https://github.com/eslint/eslint/issues/2785#issuecomment-113254153
strict: [0, 'global'], // required for node, configurable for browser, https://github.com/eslint/eslint/issues/2785#issuecomment-113254153
'object-shorthand': 0,
'no-console': 0,
}
};
{
"name": "coins-validate",
"version": "3.0.1",
"version": "4.0.0",
"description": "configures a package to fall inline with coins standards",
"main": "index.js",
"main": "src/index.js",
"repository": {

@@ -11,7 +11,16 @@ "type": "git",

"dependencies": {
"git-validate": "2.1.4"
"commander": "^2.9.0"
},
"devDependencies": {},
"devDependencies": {
"eslint": "^2.4.0",
"eslint-config-airbnb": "^6.1.0",
"eslint-plugin-react": "^4.2.3",
"gh-pages": "^0.11.0",
"istanbul": "^0.4.2",
"jsdoc": "^3.4.0",
"minami": "^1.1.1",
"tape": "^4.5.1"
},
"scripts": {
"install": "node index.js",
"install": "node bin/install.js && node src/index.js",
"preversion": "git checkout master && git pull && npm ls",

@@ -21,3 +30,10 @@ "publish-patch": "npm run preversion && npm version patch && git push origin master --tags && npm publish",

"publish-major": "npm run preversion && npm version major && git push origin master --tags && npm publish",
"validate": "npm ls"
"test": "node test/",
"lint": "eslint src/ test/",
"lintfix": "eslint --fix src/ test/",
"validate": "npm ls",
"docs": "mkdir -p docs && jsdoc -t ./node_modules/minami -d docs -R README.md -r src/",
"deploy-docs": "gh-pages -d docs && rm -rf docs",
"postpublish": "npm run docs && npm run deploy-docs",
"postest": "istanbul check --statements 90 --functions 90 --branches 90"
},

@@ -27,4 +43,6 @@ "author": "cdaringe",

"pre-commit": [
"validate"
"validate",
"lint",
"test"
]
}
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