coins-validate
Advanced tools
Comparing version 3.0.1 to 4.0.0
@@ -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" | ||
] | ||
} |
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
Install scripts
Supply chain riskInstall scripts are run when the package is installed. The majority of malware in npm is hidden in install scripts.
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
Dynamic require
Supply chain riskDynamic require can indicate the package is performing dangerous or unsafe dynamic code execution.
Found 1 instance in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
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
Install scripts
Supply chain riskInstall scripts are run when the package is installed. The majority of malware in npm is hidden in install scripts.
Found 1 instance in 1 package
Dynamic require
Supply chain riskDynamic require can indicate the package is performing dangerous or unsafe dynamic code execution.
Found 1 instance in 1 package
26673
25
451
8
4
4
+ Addedcommander@^2.9.0
+ Addedcommander@2.20.3(transitive)
- Removedgit-validate@2.1.4
- Removedgit-validate@2.1.4(transitive)