-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
47 lines (47 loc) · 1015 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
42
43
44
45
46
47
{
"name": "passw0rd",
"version": "1.0.2",
"description": "checks your password against a list of compromised credentials",
"main": "index.js",
"scripts": {
"test": "xo",
"build": "webpack -p",
"watch": "webpack --watch",
"precommit": "npm test"
},
"keywords": [
"pwned",
"password",
"checker",
"hibp",
"breach",
"security"
],
"author": {
"name": "Dheeraj Joshi",
"email": "dheerajjoshi1991@gmail.com",
"url": "https://djadmin.in"
},
"license": "MIT",
"devDependencies": {
"husky": "^0.14.3",
"uglifyjs-webpack-plugin": "^1.2.4",
"webpack": "^4.0.1",
"webpack-cli": "^2.0.10",
"xo": "^0.20.3"
},
"dependencies": {
"boxen": "^1.3.0",
"chalk": "^2.3.2",
"clipboardy": "^1.2.3",
"cowsay": "^1.2.1",
"js-sha1": "^0.6.0",
"log-symbols": "^2.2.0",
"node-fetch": "^2.1.1",
"prompt-password": "^1.2.0"
},
"bin": {
"passw0rd": "cli.js"
},
"repository": "github:djadmin/passw0rd"
}