UNPKG

pwned-checker

Version:

A command line tool to check if an email address has been pwned. Uses the https://haveibeenpwned.com/ api.

43 lines (42 loc) 1.04 kB
{ "name": "pwned-checker", "version": "1.0.0", "description": "A command line tool to check if an email address has been pwned. Uses the https://haveibeenpwned.com/ api.", "scripts": { "test": "nyc mocha test" }, "repository": { "type": "git", "url": "git+https://github.com/BrooksPatton/pwned-checker.git" }, "author": "Brooks Patton", "license": "MIT", "bugs": { "url": "https://github.com/BrooksPatton/pwned-checker/issues" }, "homepage": "https://github.com/BrooksPatton/pwned-checker#readme", "dependencies": { "axios": "^0.15.2", "chalk": "^1.1.3", "lodash": "^4.16.6", "meow": "^3.7.0", "moment": "^2.15.2" }, "devDependencies": { "chai": "^3.5.0", "eslint": "^3.9.1", "eslint-config-standard": "^6.2.1", "eslint-plugin-promise": "^3.3.0", "eslint-plugin-standard": "^2.0.1", "mocha": "^3.1.2", "nyc": "^8.3.2" }, "keywords": [ "pwned", "compromised", "haveibeenpwned" ], "bin": { "pwned-checker": "./app.js" } }