-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.78 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "check-password-complexity",
"version": "1.4.15",
"description": "A simple javascript utility to check password strength and complexity",
"keywords": [
"password",
"password-strength",
"password-complexity",
"strong-password",
"password-validation",
"zod",
"yup",
"password-checker",
"password-strength",
"password-validator",
"strong-password",
"secure password"
],
"homepage": "https://github.com/tiavina-mika/check-password-complexity",
"bugs": {
"url": "https://github.com/tiavina-mika/check-password-complexity/issues"
},
"author": {
"name": "Tiavina Michael Ralainirina",
"email": "[email protected]",
"github": "https://github.com/tiavina-mika"
},
"license": "MIT",
"type": "module",
"types": "./dist/index.d.ts",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/esm/index.js"
}
},
"files": [
"/dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rimraf dist",
"dev": "vite",
"build": "yarn clean && tsc --project tsconfig.build.json && tsc --project tsconfig.build-esm.json && yarn copy-files && yarn copy-files-esm && yarn fixImportExtension",
"prepare": "npm run build",
"preview": "vite preview",
"type:check": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint:check": "eslint --max-warnings 0 --ext .js,.jsx,.ts,.tsx src",
"lint": "npx eslint",
"md-link:check": "markdown-link-check -v -p README.md -v -p CONTRIBUTING.md -v -p .github/**/*.md -c .markdown-link-check-config.json",
"spell:check": "cspell \"{README.md,CONTRIBUTING.md,.github/*.md}\"",
"visualize": "npx vite-bundle-visualizer",
"publish": "yarn build && yarn npm publish",
"clean-cache": "yarn cache clean --all",
"copy-files": "copyfiles -u 1 src/*types.d.ts dist/",
"copy-files-esm": "copyfiles -u 1 src/*types.d.ts dist/esm",
"fixImportExtension": "ts-add-js-extension --dir=dist",
"example": "cd example && yarn upgrade",
"test": "jest",
"test:watch": "jest watch",
"test:coverage": "jest --coverage"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.2 || ^18.2.0",
"react-dom": "^16.8.0 || ^17.0.2 || ^18.2.0"
},
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.3.0",
"@eslint/compat": "^1.1.0",
"@eslint/js": "^9.4.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"@vitejs/plugin-react": "^4.2.1",
"babel-plugin-module-resolver": "^5.0.0",
"copyfiles": "^2.4.1",
"cspell": "^6.31.1",
"eslint": "^9.4.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-next": "^14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-prefer-arrow-functions": "^3.3.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"jest": "^29.7.0",
"markdown-link-check": "^3.12.1",
"prettier": "^3.2.2",
"prettier-plugin-organize-imports": "^3.2.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.5",
"ts-add-js-extension": "^1.6.4",
"ts-jest": "^29.1.4",
"typescript": "^5.2.2",
"typescript-eslint": "8.0.0-alpha.20",
"vite": "5.0.8",
"vite-tsconfig-paths": "^4.3.1"
},
"packageManager": "[email protected]"
}