smartpromise/package.json

47 lines
1.1 KiB
JSON
Raw Normal View History

2016-12-16 20:19:01 +00:00
{
"name": "@pushrocks/smartpromise",
"private": false,
2023-04-17 19:01:18 +00:00
"version": "4.0.2",
2019-03-26 11:11:24 +00:00
"description": "simple promises and Deferred constructs",
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-04-04 18:22:57 +00:00
"@gitzone/tsbuild": "^2.1.65",
"@gitzone/tsrun": "^1.2.39",
"@gitzone/tstest": "^1.0.74",
"@pushrocks/tapbundle": "^5.0.4",
"@types/node": "^18.15.11"
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
],
"type": "module"
2023-04-04 18:22:57 +00:00
}