-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
93 lines (93 loc) · 2.17 KB
/
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@mathiscode/password-leak",
"version": "1.2.11",
"description": "A library to check for compromised passwords",
"author": "J.R. Mathis (https://github.com/mathiscode)",
"license": "MIT",
"main": "dist/index.js",
"bin": {
"password-leak": "./dist/cli.js"
},
"homepage": "https://github.com/mathiscode/password-leak#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/mathiscode/password-leak.git"
},
"bugs": {
"url": "https://github.com/mathiscode/password-leak/issues"
},
"browserslist": [
"last 1 version",
"> 1%",
"maintained node versions",
"not dead"
],
"scripts": {
"build": "webpack",
"watch": "npm-run-all --parallel watch:*",
"watch:src": "webpack -w",
"watch:test": "nodemon --exec npm test",
"test": "standard && mocha",
"version:patch": "npm version patch && npm run push",
"version:minor": "npm version minor && npm run push",
"version:major": "npm version major && npm run push",
"push": "git push && npm publish",
"commit": "commit-wizard"
},
"keywords": [
"password",
"leak",
"breach",
"security",
"haveibeenpwned"
],
"config": {
"pre-git": {
"pre-commit": [
"npm run build",
"npm test",
"git add ."
]
}
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"babel-loader": "^8.0.6",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"core-js": "^3.1.4",
"jsdom": "^15.1.1",
"jsdom-global": "^3.0.2",
"mocha": "^6.1.4",
"nodemon": "^1.19.1",
"npm-run-all": "^4.1.5",
"pre-git": "^3.17.1",
"readline-sync": "^1.4.9",
"regenerator-runtime": "^0.13.2",
"standard": "^12.0.1",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.5"
},
"dependencies": {
"axios": "^0.19.0"
},
"resolutions": {
"lodash": "^4.17.13",
"mixin-deep": "^1.3.2",
"set-value": "^2.0.1"
},
"standard": {
"ignore": [
"dist/",
"node_modules/"
]
},
"release": {
"analyzeCommits": "simple-commit-message"
}
}