password-blacklist
Version:
Check passwords against a blacklist
39 lines (38 loc) • 1.04 kB
JSON
{
"name": "password-blacklist",
"version": "1.1.1",
"description": "Check passwords against a blacklist",
"main": "index.js",
"scripts": {
"download-seclists": "curl -L https://github.com/danielmiessler/SecLists/archive/master.zip > SecLists.zip && unzip SecLists.zip",
"build": "node scripts/build",
"eslint": "eslint --fix --cache .",
"eslint:ci": "eslint .",
"test": "jest --coverage"
},
"author": "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)",
"license": "MIT",
"repository": "jonathanong/password-blacklist",
"devDependencies": {
"codecov": "^3.0.0",
"eslint": "^4.16.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"globby": "^8.0.1",
"jest": "^22.3.0"
},
"files": [
"index.js",
"in-memory.js",
"data"
],
"keywords": [
"password",
"passwords",
"blacklist",
"security"
]
}