smartpromise/package.json

47 lines
1.0 KiB
JSON
Raw Normal View History

2016-12-16 20:19:01 +00:00
{
"name": "@pushrocks/smartpromise",
"private": false,
2020-10-15 18:16:17 +00:00
"version": "3.1.0",
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": {
2019-09-11 13:37:17 +00:00
"test": "(tstest test/)",
"build": "(tsbuild)"
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",
2018-07-02 20:59:16 +00:00
"dependencies": {},
2017-01-17 14:28:28 +00:00
"devDependencies": {
2020-10-15 18:13:58 +00:00
"@gitzone/tsbuild": "^2.1.25",
"@gitzone/tstest": "^1.0.52",
"@pushrocks/tapbundle": "^3.2.9",
"@types/node": "^14.11.8",
"tslint": "^6.1.3",
2019-09-11 13:37:17 +00:00
"tslint-config-prettier": "^1.18.0"
},
"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"
2019-09-11 13:37:17 +00:00
]
2020-10-15 18:14:53 +00:00
}