smartpromise/package.json

56 lines
1.3 KiB
JSON
Raw 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,
2023-07-10 21:12:01 +00:00
"version": "4.0.3",
2024-04-14 16:10:00 +00:00
"description": "A library for simple promises and Deferred constructs with TypeScript support.",
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",
"url": "git+ssh://git@gitlab.com/pushrocks/smartq.git"
},
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/smartq/issues"
},
2017-01-17 14:28:28 +00:00
"homepage": "https://gitlab.com/pushrocks/smartq#README",
"devDependencies": {
2023-07-10 21:12:00 +00:00
"@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsrun": "^1.2.42",
2023-04-04 18:22:57 +00:00
"@gitzone/tstest": "^1.0.74",
2023-07-10 21:12:00 +00:00
"@pushrocks/tapbundle": "^5.0.8",
"@types/node": "^20.4.1"
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",
"map",
"timeout",
"typescript"
]
}