Files
smartdelay/package.json
T

66 lines
1.5 KiB
JSON
Raw Normal View History

2017-01-15 22:56:29 +01:00
{
2023-07-10 02:48:34 +02:00
"name": "@push.rocks/smartdelay",
2018-07-06 14:26:00 +02:00
"private": false,
2023-07-13 09:49:50 +02:00
"version": "3.0.5",
2024-04-14 17:28:31 +02:00
"description": "A TypeScript library providing enhanced timeout functions compatible with async/await patterns.",
"exports": {
".": "./dist_ts/index.js"
},
2020-05-27 16:06:07 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2017-01-15 22:56:29 +01:00
"scripts": {
"test": "tstest test/",
"build": "tsbuild --web",
2023-04-05 16:29:29 +02:00
"buildDocs": "tsdoc"
2017-01-15 22:56:29 +01:00
},
"repository": {
"type": "git",
2024-05-29 14:12:32 +02:00
"url": "https://code.foss.global/push.rocks/smartdelay.git"
2017-01-15 22:56:29 +01:00
},
"author": "Task Venture Capital GmbH <hello@task.vc>",
2017-01-15 22:56:29 +01:00
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/smartdelay/issues"
},
2024-05-29 14:12:32 +02:00
"homepage": "https://code.foss.global/push.rocks/smartdelay",
2017-01-16 14:54:08 +01:00
"dependencies": {
"@push.rocks/smartpromise": "^4.2.4"
2017-01-16 14:54:08 +01:00
},
"devDependencies": {
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tsdoc": "^2.0.3",
"@git.zone/tstest": "^3.6.3",
"@types/node": "^25.6.0"
2019-11-03 17:11:24 +01:00
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2020-05-27 16:06:07 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2019-11-03 17:11:24 +01:00
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
".smartconfig.json",
"license",
2019-11-03 17:11:24 +01:00
"npmextra.json",
"readme.md"
2021-06-04 14:11:27 +02:00
],
"browserslist": [
"last 1 chrome versions"
2023-04-05 16:29:29 +02:00
],
2024-04-14 17:28:31 +02:00
"type": "module",
"keywords": [
"TypeScript",
"async/await",
"timeouts",
"delay",
"scheduling",
"task delay",
"asynchronous",
"programming utility",
"promise",
"timeout management"
]
}