Files
smartpromise/package.json
T

67 lines
1.5 KiB
JSON
Raw Normal View History

2016-12-16 21:19:01 +01:00
{
2023-07-10 10:17:29 +02:00
"name": "@push.rocks/smartpromise",
"private": false,
2025-02-20 12:51:50 +00:00
"version": "4.2.3",
"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": {
"test": "tstest test/ --web",
"format": "gitzone format",
"build": "tsbuild --web",
2023-04-04 20:22:57 +02:00
"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": "Task Venture Capital GmbH <hello@task.vc>",
2016-12-16 21:19:01 +01:00
"license": "MIT",
"bugs": {
"url": "https://code.foss.global/push.rocks/smartpromise/issues"
2016-12-16 21:19:01 +01:00
},
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": {
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tsrun": "^2.0.3",
"@git.zone/tstest": "^3.6.3",
"@types/node": "^25.6.0"
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",
".smartconfig.json",
"license",
2019-09-11 15:37:17 +02:00
"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",
"typescript",
"asynchronous",
"utilities"
],
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"mongodb-memory-server",
"puppeteer"
]
}
2024-06-23 23:46:43 +02:00
}