-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
46 lines (46 loc) · 1.43 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
{
"name": "pw-pwnage-cfworker",
"description": "A Cloudflare Worker to sanely score users' new passwords with zxcvbn AND check for breaches against haveibeenpwned.",
"author": "Dave Willenberg <[email protected]> (https://github.com/detroitenglish)",
"version": "2.1.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/detroitenglish/pw-pwnage-cfworker"
},
"bugs": {
"url": "https://github.com/detroitenglish/pw-pwnage-cfworker/issues"
},
"homepage": "https://github.com/detroitenglish/pw-pwnage-cfworker",
"scripts": {
"precommit": "./node_modules/.bin/eslint src webpack.config.js",
"test": "cross-env NO_UPLOAD=1 npm run deploy",
"deploy": "webpack --display none"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^0.14.3",
"prettier": "^2.7.1"
},
"dependencies": {
"@babel/core": "^7.18.6",
"@babel/eslint-parser": "^7.18.2",
"@babel/preset-env": "^7.18.6",
"babel-loader": "^8.2.5",
"babel-plugin-closure-elimination": "^1.3.2",
"clean-webpack-plugin": "^0.1.19",
"cloudflare-workers-webpack-plugin": "^3.0.1",
"core-js": "^3.23.3",
"dotenv": "^16.0.1",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0",
"zxcvbn": "^4.4.2"
},
"engines": {
"node": ">=12"
}
}