smartguard/package.json

69 lines
1.6 KiB
JSON
Raw Permalink Normal View History

2019-06-18 12:51:13 +00:00
{
2023-07-10 00:56:07 +00:00
"name": "@push.rocks/smartguard",
2024-05-30 20:09:38 +00:00
"version": "3.0.2",
2019-06-18 12:51:13 +00:00
"private": false,
2024-05-30 13:08:09 +00:00
"description": "A TypeScript library for creating and managing validation guards, aiding in data validation and security checks.",
2022-03-21 20:53:46 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
2019-06-18 12:51:13 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/)",
"build": "(tsbuild)",
"format": "(gitzone format)"
},
"devDependencies": {
2024-05-30 13:08:09 +00:00
"@api.global/typedserver": "^3.0.50",
"@git.zone/tsbuild": "^2.1.66",
"@git.zone/tsrun": "^1.2.46",
"@git.zone/tstest": "^1.0.77",
"@push.rocks/tapbundle": "^5.0.8",
"@types/node": "^20.12.13"
2019-06-18 12:51:13 +00:00
},
2019-08-07 14:31:53 +00:00
"dependencies": {
2024-05-30 13:08:09 +00:00
"@push.rocks/smartpromise": "^4.0.2",
"@push.rocks/smartrequest": "^2.0.15"
2019-08-07 14:34:34 +00:00
},
"files": [
2022-03-21 20:53:46 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-08-07 14:34:34 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2022-03-21 20:53:46 +00:00
],
"browserslist": [
"last 1 chrome versions"
2024-04-14 15:39:13 +00:00
],
"keywords": [
2024-05-30 20:09:37 +00:00
"typescript",
2024-04-14 15:39:13 +00:00
"validation",
"guards",
"async",
"nodejs",
"express",
2024-05-30 13:08:09 +00:00
"middleware",
"security",
"input validation",
"API",
2024-05-30 14:57:18 +00:00
"data validation",
2024-05-30 13:08:09 +00:00
"custom validation",
2024-05-30 14:57:18 +00:00
"composite validation",
"form validation",
"server-side validation",
2024-05-30 20:09:37 +00:00
"backend validation",
"smartrequest",
"typedserver"
2024-05-29 12:13:24 +00:00
],
"homepage": "https://code.foss.global/push.rocks/smartguard",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartguard.git"
}
2024-05-30 20:09:38 +00:00
}