2016-12-16 21:19:01 +01:00
|
|
|
{
|
2023-07-10 10:17:29 +02:00
|
|
|
"name": "@push.rocks/smartpromise",
|
2018-07-02 22:49:21 +02:00
|
|
|
"private": false,
|
2025-01-07 04:27:25 +01:00
|
|
|
"version": "4.1.0",
|
2024-06-23 23:46:42 +02:00
|
|
|
"description": "A TypeScript library for managing promises and Deferred constructs, simplifying asynchronous programming.",
|
2020-10-15 18:13:58 +00:00
|
|
|
"main": "dist_ts/index.js",
|
|
|
|
"typings": "dist_ts/index.d.ts",
|
2016-12-16 21:19:01 +01:00
|
|
|
"scripts": {
|
2020-10-15 18:19:12 +00:00
|
|
|
"test": "(tstest test/ --web)",
|
2023-04-04 20:22:57 +02:00
|
|
|
"build": "(tsbuild --web --allowimplicitany)",
|
|
|
|
"buildDocs": "tsdoc"
|
2016-12-16 21:19:01 +01:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2024-05-29 14:15:32 +02:00
|
|
|
"url": "https://code.foss.global/push.rocks/smartpromise.git"
|
2016-12-16 21:19:01 +01:00
|
|
|
},
|
|
|
|
"author": "Lossless GmbH",
|
|
|
|
"license": "MIT",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://gitlab.com/pushrocks/smartq/issues"
|
|
|
|
},
|
2024-05-29 14:15:32 +02:00
|
|
|
"homepage": "https://code.foss.global/push.rocks/smartpromise",
|
2017-01-17 15:28:28 +01:00
|
|
|
"devDependencies": {
|
2024-06-23 23:46:42 +02:00
|
|
|
"@git.zone/tsbuild": "^2.1.66",
|
|
|
|
"@git.zone/tsrun": "^1.2.44",
|
|
|
|
"@git.zone/tstest": "^1.0.77",
|
|
|
|
"@push.rocks/tapbundle": "^5.0.8",
|
|
|
|
"@types/node": "^20.14.8"
|
2019-09-11 15:37:17 +02:00
|
|
|
},
|
|
|
|
"files": [
|
2020-10-15 18:14:53 +00:00
|
|
|
"ts/**/*",
|
|
|
|
"ts_web/**/*",
|
|
|
|
"dist/**/*",
|
|
|
|
"dist_*/**/*",
|
|
|
|
"dist_ts/**/*",
|
|
|
|
"dist_ts_web/**/*",
|
|
|
|
"assets/**/*",
|
2019-09-11 15:37:17 +02:00
|
|
|
"cli.js",
|
|
|
|
"npmextra.json",
|
|
|
|
"readme.md"
|
2020-10-15 18:14:53 +00:00
|
|
|
],
|
|
|
|
"browserslist": [
|
|
|
|
"last 1 chrome versions"
|
2023-04-04 20:22:57 +02:00
|
|
|
],
|
2024-04-14 18:10:00 +02:00
|
|
|
"type": "module",
|
|
|
|
"keywords": [
|
|
|
|
"promise",
|
|
|
|
"deferred",
|
|
|
|
"async",
|
|
|
|
"promisify",
|
|
|
|
"cumulative deferred",
|
|
|
|
"timeout",
|
2024-06-23 23:46:42 +02:00
|
|
|
"typescript",
|
|
|
|
"asynchronous",
|
|
|
|
"utilities"
|
2024-04-14 18:10:00 +02:00
|
|
|
]
|
2024-06-23 23:46:43 +02:00
|
|
|
}
|