smartguard/package.json

53 lines
1.1 KiB
JSON
Raw Normal View History

2019-06-18 12:51:13 +00:00
{
2023-07-10 00:56:07 +00:00
"name": "@push.rocks/smartguard",
2022-03-21 23:20:28 +00:00
"version": "2.0.1",
2019-06-18 12:51:13 +00:00
"private": false,
2024-04-14 15:39:13 +00:00
"description": "A library for creating and managing validation guards.",
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": {
2022-03-21 20:53:46 +00:00
"@gitzone/tsbuild": "^2.1.60",
"@gitzone/tstest": "^1.0.69",
"@pushrocks/smartexpress": "^3.0.110",
"@pushrocks/tapbundle": "^5.0.2",
"@types/node": "^17.0.22",
"tslint": "^6.1.3",
2019-06-18 12:51:13 +00:00
"tslint-config-prettier": "^1.15.0"
},
2019-08-07 14:31:53 +00:00
"dependencies": {
"@pushrocks/smartpromise": "^3.0.2",
2022-03-21 20:53:46 +00:00
"@pushrocks/smartrequest": "^1.1.56"
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": [
"validation",
"guards",
"typescript",
"async",
"nodejs",
"express",
"middleware"
2019-08-07 14:34:34 +00:00
]
2023-07-10 00:56:07 +00:00
}