-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
42 lines (42 loc) · 974 Bytes
/
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
{
"name": "yup-password",
"version": "0.4.0",
"description": "Yup, dead simple password validation.",
"keywords": [
"yup",
"validation",
"password",
"complexity"
],
"license": "MIT",
"author": "@knicola",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/knicola/yup-password.git"
},
"bugs": {
"url": "https://github.com/knicola/yup-password/issues"
},
"homepage": "https://github.com/knicola/yup-password#readme",
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"build": "tsc -p tsconfig.build.json"
},
"devDependencies": {
"@knicola/dev-config": "^0.3.2",
"@types/jest": "^29.5.12",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"yup": "^1.3.3"
}
}