forked from lannex/react-password-strength-bar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.16 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
{
"name": "react-password-strength-bar",
"version": "0.3.3",
"description": "A React component that displays the password strength bar",
"main": "dist/index.js",
"scripts": {
"start": "npm run build",
"build": "NODE_ENV=production rollup -c --environment INCLUDE_DEPS,BUILD:production",
"dev": "rollup -cw",
"test": "jest --coverage --coverageReporters=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lannex/react-password-strength-bar.git"
},
"keywords": [
"react",
"password",
"strength",
"bar",
"zxcvbn"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/lannex/react-password-strength-bar/issues"
},
"homepage": "https://github.com/lannex/react-password-strength-bar#readme",
"devDependencies": {
"@types/enzyme": "3.10.8",
"@types/enzyme-adapter-react-16": "1.0.6",
"@types/eslint": "7.2.7",
"@types/eslint-plugin-prettier": "3.1.0",
"@types/jest": "26.0.20",
"@types/prettier": "2.2.2",
"@types/react": "17.0.3",
"@types/react-dom": "17.0.2",
"@types/zxcvbn": "4.4.0",
"@typescript-eslint/eslint-plugin": "4.17.0",
"@typescript-eslint/parser": "4.17.0",
"coveralls": "3.1.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.6",
"eslint": "7.21.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-react-hooks": "4.2.0",
"jest": "26.6.3",
"prettier": "2.2.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rollup": "1.31.1",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-peer-deps-external": "2.2.2",
"rollup-plugin-replace": "2.2.0",
"rollup-plugin-typescript2": "0.26.0",
"rollup-plugin-uglify": "6.0.4",
"ts-jest": "26.5.3",
"typescript": "4.2.3"
},
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"dependencies": {
"zxcvbn": "4.4.2"
}
}