smartstatus/package.json

54 lines
1.2 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,
2024-04-14 16:24:47 +00:00
"description": "A TypeScript library for managing HTTP status information, with detailed status classes.",
2021-08-16 13:36:41 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2017-04-06 15:00:38 +00:00
"scripts": {
2019-01-02 00:00:53 +00:00
"test": "(tstest test/)",
2021-08-16 14:31:04 +00:00
"build": "tsbuild --web"
2017-04-06 15:00:38 +00:00
},
"repository": {
"type": "git",
2024-05-29 12:16:36 +00:00
"url": "https://code.foss.global/push.rocks/smartstatus.git"
2017-04-06 15:00:38 +00:00
},
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pkunz/smartstatus/issues"
},
2024-05-29 12:16:36 +00:00
"homepage": "https://code.foss.global/push.rocks/smartstatus",
2017-04-12 09:38:52 +00:00
"devDependencies": {
2021-08-16 13:36:41 +00:00
"@gitzone/tsbuild": "^2.1.25",
"@gitzone/tstest": "^1.0.54",
"@pushrocks/tapbundle": "^3.2.14",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0"
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",
"error handling",
"client errors",
"server errors",
"status codes",
"HTTP response",
"HTTP request"
2021-08-16 13:36:41 +00:00
]
2024-03-30 20:48:49 +00:00
}