smartstatus/package.json

61 lines
1.4 KiB
JSON
Raw Normal View History

2017-04-06 15:00:38 +00:00
{
2024-03-30 20:48:49 +00:00
"name": "@push.rocks/smartstatus",
2021-08-19 16:42:52 +00:00
"version": "1.0.12",
2019-01-02 00:00:53 +00:00
"private": false,
"description": "A TypeScript library for managing HTTP status codes, providing detailed classes for each status to enhance HTTP error and response handling.",
"type": "module",
"exports": {
".": "./dist_ts/index.js"
},
2017-04-06 15:00:38 +00:00
"scripts": {
2019-01-02 00:00:53 +00:00
"test": "(tstest test/)",
"build": "tsbuild --web",
"buildDocs": "tsdoc"
2017-04-06 15:00:38 +00:00
},
"repository": {
"type": "git",
"url": "git+https://code.foss.global/push.rocks/smartstatus.git"
2017-04-06 15:00:38 +00:00
},
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://code.foss.global/push.rocks/smartstatus/issues"
2017-04-06 15:00:38 +00:00
},
"homepage": "https://code.foss.global/push.rocks/smartstatus#readme",
2017-04-12 09:38:52 +00:00
"devDependencies": {
"@git.zone/tsbuild": "^2.1.25",
"@git.zone/tsrun": "^1.3.3",
"@git.zone/tstest": "^1.0.54",
"@push.rocks/tapbundle": "^5.5.3"
2019-01-02 00:00:53 +00:00
},
2021-08-16 13:36:41 +00:00
"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:24:47 +00:00
],
"keywords": [
"TypeScript",
"HTTP",
"status codes",
2024-04-14 16:24:47 +00:00
"error handling",
"client errors",
"server errors",
"response management",
"error management",
"API development",
"express.js",
"web applications",
"network services",
"custom status codes"
2021-08-16 13:36:41 +00:00
]
2024-03-30 20:48:49 +00:00
}