smartshell/package.json

59 lines
1.3 KiB
JSON
Raw Normal View History

2017-02-12 12:13:08 +00:00
{
"name": "@pushrocks/smartshell",
"private": false,
2021-11-26 14:17:52 +00:00
"version": "2.0.30",
2017-02-12 12:13:08 +00:00
"description": "shell actions designed as promises",
2021-07-26 19:24:13 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2017-02-12 12:13:08 +00:00
"scripts": {
2018-08-05 21:27:37 +00:00
"test": "(tstest test/)",
2021-07-26 19:24:13 +00:00
"build": "(tsbuild --web)"
2017-02-12 12:13:08 +00:00
},
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/pushrocks/smartshell.git"
},
"keywords": [
"shell",
"promise"
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/smartshell/issues"
},
"homepage": "https://gitlab.com/pushrocks/smartshell#README",
"devDependencies": {
2021-11-07 18:18:01 +00:00
"@gitzone/tsbuild": "^2.1.28",
"@gitzone/tsrun": "^1.2.18",
2021-11-26 14:17:52 +00:00
"@gitzone/tstest": "^1.0.60",
2021-07-26 19:24:13 +00:00
"@pushrocks/tapbundle": "^3.2.14",
2021-11-26 14:17:52 +00:00
"@types/node": "^16.11.10",
2021-07-26 19:24:13 +00:00
"tslint": "^6.1.3",
2019-05-14 15:28:38 +00:00
"tslint-config-prettier": "^1.18.0"
2017-02-12 12:13:08 +00:00
},
"dependencies": {
2021-07-26 19:24:13 +00:00
"@pushrocks/smartdelay": "^2.0.13",
2021-11-07 18:18:01 +00:00
"@pushrocks/smartexit": "^1.0.20",
2021-07-26 19:24:13 +00:00
"@pushrocks/smartpromise": "^3.1.6",
"@types/which": "^2.0.1",
2020-05-22 01:23:27 +00:00
"tree-kill": "^1.2.2",
2021-07-26 19:24:13 +00:00
"which": "^2.0.2"
2019-08-27 18:15:22 +00:00
},
"files": [
2021-07-26 19:24:13 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-08-27 18:15:22 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2021-07-26 19:24:13 +00:00
],
"browserslist": [
"last 1 chrome versions"
2019-08-27 18:15:22 +00:00
]
2021-11-26 14:17:52 +00:00
}