smartdelay/package.json

48 lines
1.1 KiB
JSON
Raw Normal View History

2017-01-15 21:56:29 +00:00
{
2018-07-06 12:20:56 +00:00
"name": "@pushrocks/smartdelay",
2018-07-06 12:26:00 +00:00
"private": false,
2021-06-04 11:54:21 +00:00
"version": "2.0.11",
2017-01-15 21:56:29 +00:00
"description": "timeouts for the async/await era, written in TypeScript",
2020-05-27 16:06:07 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2017-01-15 21:56:29 +00:00
"scripts": {
2018-08-08 21:25:48 +00:00
"test": "(tstest test/)",
2020-05-27 16:06:07 +00:00
"build": "(tsbuild && tsbundle npm)"
2017-01-15 21:56:29 +00:00
},
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/pushrocks/smartdelay.git"
},
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/smartdelay/issues"
},
2017-01-16 13:54:08 +00:00
"homepage": "https://gitlab.com/pushrocks/smartdelay#README",
"dependencies": {
2019-11-03 15:56:17 +00:00
"@pushrocks/smartpromise": "^3.0.6"
2017-01-16 13:54:08 +00:00
},
"devDependencies": {
2020-05-27 16:06:07 +00:00
"@gitzone/tsbuild": "^2.1.24",
"@gitzone/tsbundle": "^1.0.69",
2019-11-03 15:56:17 +00:00
"@gitzone/tsrun": "^1.2.8",
"@gitzone/tstest": "^1.0.28",
2020-05-27 16:06:07 +00:00
"@pushrocks/tapbundle": "^3.2.1",
2021-06-04 11:54:21 +00:00
"@types/node": "^15.12.0",
2020-05-27 16:06:07 +00:00
"tslint": "^6.1.2",
2019-11-03 17:01:40 +00:00
"tslint-config-prettier": "^1.18.0"
2019-11-03 16:11:24 +00:00
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2020-05-27 16:06:07 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2019-11-03 16:11:24 +00:00
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
]
2020-05-27 16:06:07 +00:00
}