forked from sators/react-password-checklist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.63 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
94
95
96
97
98
99
100
{
"name": "react-password-checklist",
"version": "1.4.3",
"keywords": [
"password",
"strength",
"indicator",
"meter",
"validator",
"validation",
"form",
"signup",
"account",
"creation",
"signin",
"react",
"checker",
"strong",
"capital",
"number",
"symbol",
"length",
"create account",
"password reset",
"check password strength",
"password strength checker",
"strength checker",
"password checker",
"password checker strength",
"strength password checker",
"check-password-strength",
"password-strength-checker",
"strength-checker",
"password-checker",
"password-checker-strength",
"strength-password-checker",
"pass-strength"
],
"description": "A React Component to display the success or failure of password strength rules, ideal for registration or password reset forms.",
"public": true,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"build-storybook": "build-storybook",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"prepare": "npm run test && npm run build",
"start": "npm run storybook",
"storybook": "start-storybook -p 9009",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --colors"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sators/react-password-checklist.git"
},
"author": "Sators <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sators/react-password-checklist/issues"
},
"homepage": "https://github.com/sators/react-password-checklist#readme",
"dependencies": {
"styled-components": "^5.3.5"
},
"peerDependencies": {
"react": ">16.0.0-alpha || >17.0.0-alpha || >18.0.0-alpha"
},
"devDependencies": {
"@babel/plugin-syntax-logical-assignment-operators": "^7.10.4",
"@pxblue/storybook-rtl-addon": "^1.1.0",
"@storybook/addon-actions": "^6.4.9",
"@storybook/addon-knobs": "^6.2.8",
"@storybook/react": "^6.4.9",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.9",
"@types/storybook__addon-knobs": "^5.2.1",
"@types/storybook__react": "^5.2.1",
"@types/styled-components": "^5.1.2",
"babel-loader": "^8.1.0",
"babel-plugin-polyfill-corejs2": "^0.2.2",
"babel-plugin-polyfill-regenerator": "^0.2.2",
"babel-preset-react-app": "^9.1.2",
"coveralls": "^3.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.3",
"jest": "^26.2.2",
"react": "^16.8.0",
"react-docgen-typescript-loader": "^3.7.2",
"react-dom": "^16.8.0",
"ts-jest": "^26.1.4",
"ts-loader": "^8.0.2",
"typescript": "^4.7.4"
}
}