Files
smartdelay/package.json

62 lines
1.4 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.",
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": {
2018-08-08 23:25:48 +02:00
"test": "(tstest test/)",
2023-04-05 16:31:34 +02:00
"build": "(tsbuild --web --allowimplicitany && tsbundle npm)",
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": "Lossless GmbH",
"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": {
2023-07-13 09:44:40 +02:00
"@push.rocks/smartpromise": "^4.0.2"
2017-01-16 14:54:08 +01:00
},
"devDependencies": {
2023-07-10 23:13:11 +02:00
"@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsbundle": "^2.0.8",
"@gitzone/tsrun": "^1.2.42",
2023-04-05 16:29:29 +02:00
"@gitzone/tstest": "^1.0.74",
2023-07-13 09:44:40 +02:00
"@push.rocks/tapbundle": "^5.0.8",
2023-07-10 23:13:11 +02:00
"@types/node": "^20.4.1"
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",
"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"
]
}