taskbuffer/package.json

68 lines
1.7 KiB
JSON
Raw Permalink Normal View History

2016-02-12 03:49:31 +00:00
{
2023-07-26 12:16:33 +00:00
"name": "@push.rocks/taskbuffer",
2023-10-20 11:05:40 +00:00
"version": "3.1.7",
"private": false,
2024-04-14 16:38:20 +00:00
"description": "A flexible task management library supporting TypeScript, allowing for task buffering, scheduling, and execution with dependency management.",
2020-07-12 00:48:51 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-03-25 11:14:49 +00:00
"type": "module",
2016-02-12 03:49:31 +00:00
"scripts": {
2020-07-12 00:48:51 +00:00
"test": "(tstest test/ --web)",
2023-07-26 12:16:33 +00:00
"build": "(tsbuild --web && tsbundle npm)",
"buildDocs": "tsdoc"
2016-02-12 03:49:31 +00:00
},
"repository": {
"type": "git",
2024-05-29 12:17:28 +00:00
"url": "https://code.foss.global/push.rocks/taskbuffer.git"
2016-02-12 03:49:31 +00:00
},
"keywords": [
2024-04-14 16:38:20 +00:00
"task management",
2017-01-20 17:54:23 +00:00
"TypeScript",
2024-04-14 16:38:20 +00:00
"task buffering",
"task scheduling",
"task execution",
"task dependencies",
"parallel tasks",
"task chains",
"debounced tasks",
"distributed coordination"
2016-02-12 03:49:31 +00:00
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
2016-08-01 11:35:33 +00:00
"url": "https://gitlab.com/pushrocks/taskbuffer/issues"
2016-02-12 03:49:31 +00:00
},
2024-05-29 12:17:28 +00:00
"homepage": "https://code.foss.global/push.rocks/taskbuffer",
2016-02-12 03:49:31 +00:00
"dependencies": {
2023-08-15 09:39:31 +00:00
"@push.rocks/lik": "^6.0.5",
2023-07-26 12:16:33 +00:00
"@push.rocks/smartdelay": "^3.0.5",
2023-08-01 22:07:21 +00:00
"@push.rocks/smartlog": "^3.0.3",
2023-07-26 12:16:33 +00:00
"@push.rocks/smartpromise": "^4.0.3",
2023-08-01 22:07:21 +00:00
"@push.rocks/smartrx": "^3.0.6",
2023-10-20 11:05:39 +00:00
"@push.rocks/smarttime": "^4.0.6",
2023-08-15 09:39:31 +00:00
"@push.rocks/smartunique": "^3.0.6"
2016-02-12 03:49:31 +00:00
},
"devDependencies": {
2023-10-20 11:05:39 +00:00
"@git.zone/tsbuild": "^2.1.66",
"@git.zone/tsbundle": "^2.0.8",
"@git.zone/tsrun": "^1.2.44",
"@git.zone/tstest": "^1.0.77",
2023-08-12 10:10:37 +00:00
"@push.rocks/tapbundle": "^5.0.15",
2023-10-20 11:05:39 +00:00
"@types/node": "^20.8.7"
2019-09-06 14:32:36 +00:00
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2020-07-12 00:48:51 +00:00
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-09-06 14:32:36 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2020-07-12 00:48:51 +00:00
],
"browserslist": [
"last 1 chrome versions"
2019-09-06 14:32:36 +00:00
]
2024-04-14 16:38:20 +00:00
}