smartdelay/package.json

62 lines
1.4 KiB
JSON
Raw Normal View History

2017-01-15 21:56:29 +00:00
{
2023-07-10 00:48:34 +00:00
"name": "@push.rocks/smartdelay",
2018-07-06 12:26:00 +00:00
"private": false,
2023-07-13 07:49:50 +00:00
"version": "3.0.5",
2024-04-14 15:28:31 +00:00
"description": "A TypeScript library providing enhanced timeout functions compatible with async/await patterns.",
2020-05-27 16:06:07 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2017-01-15 21:56:29 +00:00
"scripts": {
2018-08-08 21:25:48 +00:00
"test": "(tstest test/)",
2023-04-05 14:31:34 +00:00
"build": "(tsbuild --web --allowimplicitany && tsbundle npm)",
2023-04-05 14:29:29 +00:00
"buildDocs": "tsdoc"
2017-01-15 21:56:29 +00:00
},
"repository": {
"type": "git",
2024-05-29 12:12:32 +00:00
"url": "https://code.foss.global/push.rocks/smartdelay.git"
2017-01-15 21:56:29 +00:00
},
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/smartdelay/issues"
},
2024-05-29 12:12:32 +00:00
"homepage": "https://code.foss.global/push.rocks/smartdelay",
2017-01-16 13:54:08 +00:00
"dependencies": {
2023-07-13 07:44:40 +00:00
"@push.rocks/smartpromise": "^4.0.2"
2017-01-16 13:54:08 +00:00
},
"devDependencies": {
2023-07-10 21:13:11 +00:00
"@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsbundle": "^2.0.8",
"@gitzone/tsrun": "^1.2.42",
2023-04-05 14:29:29 +00:00
"@gitzone/tstest": "^1.0.74",
2023-07-13 07:44:40 +00:00
"@push.rocks/tapbundle": "^5.0.8",
2023-07-10 21:13:11 +00:00
"@types/node": "^20.4.1"
2019-11-03 16:11:24 +00:00
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2020-05-27 16:06:07 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2019-11-03 16:11:24 +00:00
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2021-06-04 12:11:27 +00:00
],
"browserslist": [
"last 1 chrome versions"
2023-04-05 14:29:29 +00:00
],
2024-04-14 15:28:31 +00:00
"type": "module",
"keywords": [
"TypeScript",
"async/await",
"timeouts",
"delay",
"scheduling",
"task delay",
"asynchronous",
"programming utility",
"promise",
"timeout management"
]
}