smartpromise/package.json

58 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2016-12-16 20:19:01 +00:00
{
2023-07-10 08:17:29 +00:00
"name": "@push.rocks/smartpromise",
"private": false,
2024-06-23 21:46:43 +00:00
"version": "4.0.4",
"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 20:19:01 +00:00
"scripts": {
2020-10-15 18:19:12 +00:00
"test": "(tstest test/ --web)",
2023-04-04 18:22:57 +00:00
"build": "(tsbuild --web --allowimplicitany)",
"buildDocs": "tsdoc"
2016-12-16 20:19:01 +00:00
},
"repository": {
"type": "git",
2024-05-29 12:15:32 +00:00
"url": "https://code.foss.global/push.rocks/smartpromise.git"
2016-12-16 20:19:01 +00:00
},
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/smartq/issues"
},
2024-05-29 12:15:32 +00:00
"homepage": "https://code.foss.global/push.rocks/smartpromise",
2017-01-17 14:28:28 +00:00
"devDependencies": {
"@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 13:37:17 +00:00
},
"files": [
2020-10-15 18:14:53 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-09-11 13:37:17 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2020-10-15 18:14:53 +00:00
],
"browserslist": [
"last 1 chrome versions"
2023-04-04 18:22:57 +00:00
],
2024-04-14 16:10:00 +00:00
"type": "module",
"keywords": [
"promise",
"deferred",
"async",
"promisify",
"cumulative deferred",
"timeout",
"typescript",
"asynchronous",
"utilities"
2024-04-14 16:10:00 +00:00
]
2024-06-23 21:46:43 +00:00
}