-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 991 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "check-my-secrets",
"version": "0.0.3",
"description": "NodeJS script checking whether any of the passwords used online are compromised.",
"bin": "./bin/check-my-secrets.js",
"engines": {
"node": ">=17"
},
"type": "module",
"scripts": {
"start": "node --no-warnings bin/check-my-secrets.js",
"format": "npx prettier --check lib/*.*js bin/*.*js",
"format:fix": "npm run format -- --write",
"lint": "eslint lib/*.*js bin/*.*js"
},
"keywords": [
"security",
"secrets",
"secret-management",
"password-integrity",
"password-safety",
"haveibeenpwned",
"security-tools"
],
"author": {
"name": "Max Guglielmi",
"url": "https://github.com/koalyptus"
},
"license": "MIT",
"dependencies": {
"ckey": "^1.0.2",
"keyring": "^1.1.0",
"node-fetch": "^3.3.0",
"node-notifier": "^10.0.1",
"winston": "^3.8.2"
},
"devDependencies": {
"eslint": "^8.31.0",
"prettier": "^2.8.2"
}
}