smartvalidator/package.json

61 lines
1.4 KiB
JSON
Raw Permalink Normal View History

2022-07-08 09:55:25 +00:00
{
2024-03-30 20:49:02 +00:00
"name": "@push.rocks/smartvalidator",
2023-03-27 21:13:37 +00:00
"version": "1.0.5",
2022-07-08 09:55:25 +00:00
"private": false,
2024-04-14 16:31:59 +00:00
"description": "A wrapper for performing validations using the validator package.",
2022-07-08 09:55:25 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/ --web)",
"build": "(tsbuild --web --allowimplicitany)",
"buildDocs": "(tsdoc)"
},
"devDependencies": {
"@gitzone/tsbuild": "^2.1.25",
"@gitzone/tsbundle": "^2.0.5",
"@gitzone/tsdoc": "^1.1.10",
"@gitzone/tstest": "^1.0.44",
"@pushrocks/tapbundle": "^5.0.3",
2024-03-30 20:49:02 +00:00
"@types/node": "^18.15.11"
2022-07-08 09:55:25 +00:00
},
"dependencies": {
"@types/validator": "^13.7.4",
"validator": "^13.7.0"
},
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2024-04-14 16:31:59 +00:00
],
"keywords": [
"validation",
"validator wrapper",
"data sanitation",
"input validation",
"type checking",
"security",
"form validation",
"string validation",
"URL validation",
"IBAN validation",
"email escape"
2024-05-29 12:17:03 +00:00
],
"homepage": "https://code.foss.global/push.rocks/smartvalidator",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartvalidator.git"
}
2024-03-30 20:49:02 +00:00
}