forked from OktaSecurityLabs/passprotect-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.12 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": "@advanced/passprotect",
"version": "1.0.1",
"description": "Protect your user's passwords.",
"main": "src/index.js",
"dependencies": {
"js-sha1": "^0.6.0",
"vex-js": "^4.1.0"
},
"files": [
"umd"
],
"devDependencies": {
"css-loader": "^0.28.11",
"local-web-server": "^2.5.2",
"open-cli": "^5.0.0",
"rimraf": "^3.0.0",
"style-loader": "^0.21.0",
"webpack": "^4.8.1",
"webpack-cli": "^2.1.3",
"webpack-shell-plugin": "^0.5.0"
},
"scripts": {
"test": "npm run build && cp ./dist/passprotect.min.js test/ && cd test && open-cli index.html",
"build": "rimraf dist umd && webpack --config webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oktasecuritylabs/passprotect-js.git"
},
"keywords": [
"password",
"protect",
"api",
"haveibeenpwned",
"security",
"login",
"breach"
],
"author": "Randall Degges",
"license": "MIT",
"bugs": {
"url": "https://github.com/oktasecuritylabs/passprotect-js/issues"
},
"homepage": "https://github.com/oktasecuritylabs/passprotect-js#readme"
}