smartdelay/package.json

44 lines
1.0 KiB
JSON
Raw Permalink 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,
2019-11-03 16:11:25 +00:00
"version": "2.0.5",
2017-01-15 21:56:29 +00:00
"description": "timeouts for the async/await era, written in TypeScript",
"main": "dist/index.js",
2017-01-16 13:54:08 +00:00
"typings": "dist/index.d.ts",
2017-01-15 21:56:29 +00:00
"scripts": {
2018-08-08 21:25:48 +00:00
"test": "(tstest test/)",
"build": "(tsbuild)"
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": {
2019-11-03 15:56:17 +00:00
"@gitzone/tsbuild": "^2.1.17",
"@gitzone/tsrun": "^1.2.8",
"@gitzone/tstest": "^1.0.28",
"@pushrocks/tapbundle": "^3.0.13",
"@types/node": "^12.12.5"
2019-11-03 16:11:24 +00:00
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_web/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
]
2019-11-03 16:11:25 +00:00
}