Files
validation/package.json
T
pascal 1179c4b1da Validation
Package, implementation and tests
2024-05-19 22:47:42 +02:00

29 lines
573 B
JSON

{
"name": "validation",
"description": "Various validation for web usage",
"version": "1.0.0",
"author": "Pascal Perrenoud <pascal@pband.ch>",
"module": "index.ts",
"type": "module",
"files": ["index.ts"],
"scripts": {
"test": "bun test"
},
"dependencies": {
"email-validator": "^2.0.4",
"htmlparser2": "^9.1.0",
"log": "git+https://git.pband.ch/typescript/log",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@types/bun": "^1.1.2",
"@types/zxcvbn": "^4.4.4"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}