2017-02-12 12:13:08 +00:00
|
|
|
{
|
2024-03-16 10:18:53 +00:00
|
|
|
"name": "@push.rocks/smartshell",
|
2018-07-18 18:58:12 +00:00
|
|
|
"private": false,
|
2024-12-13 18:03:51 +00:00
|
|
|
"version": "3.2.2",
|
2024-04-14 16:17:36 +00:00
|
|
|
"description": "A library for executing shell commands using promises.",
|
2021-07-26 19:24:13 +00:00
|
|
|
"main": "dist_ts/index.js",
|
|
|
|
"typings": "dist_ts/index.d.ts",
|
2023-06-22 09:51:44 +00:00
|
|
|
"type": "module",
|
2017-02-12 12:13:08 +00:00
|
|
|
"scripts": {
|
2018-08-05 21:27:37 +00:00
|
|
|
"test": "(tstest test/)",
|
2024-12-09 01:39:31 +00:00
|
|
|
"build": "(tsbuild tsfolders --web)",
|
2023-06-22 09:51:44 +00:00
|
|
|
"buildDocs": "tsdoc"
|
2017-02-12 12:13:08 +00:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2024-05-29 12:16:08 +00:00
|
|
|
"url": "https://code.foss.global/push.rocks/smartshell.git"
|
2017-02-12 12:13:08 +00:00
|
|
|
},
|
|
|
|
"keywords": [
|
2024-04-14 16:17:36 +00:00
|
|
|
"shell commands",
|
|
|
|
"promises",
|
|
|
|
"asynchronous execution",
|
|
|
|
"child processes",
|
|
|
|
"environment management",
|
|
|
|
"command streaming",
|
|
|
|
"interactive commands",
|
|
|
|
"process management",
|
|
|
|
"typescript"
|
2017-02-12 12:13:08 +00:00
|
|
|
],
|
|
|
|
"author": "Lossless GmbH",
|
|
|
|
"license": "MIT",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://gitlab.com/pushrocks/smartshell/issues"
|
|
|
|
},
|
2024-05-29 12:16:08 +00:00
|
|
|
"homepage": "https://code.foss.global/push.rocks/smartshell",
|
2017-02-12 12:13:08 +00:00
|
|
|
"devDependencies": {
|
2024-12-09 01:39:31 +00:00
|
|
|
"@git.zone/tsbuild": "^2.2.0",
|
|
|
|
"@git.zone/tsrun": "^1.3.3",
|
2024-09-17 15:02:42 +00:00
|
|
|
"@git.zone/tstest": "^1.0.90",
|
2024-12-09 01:39:31 +00:00
|
|
|
"@push.rocks/tapbundle": "^5.5.3",
|
2024-12-13 17:55:34 +00:00
|
|
|
"@types/node": "^22.10.2"
|
2017-02-12 12:13:08 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-03-16 10:18:53 +00:00
|
|
|
"@push.rocks/smartdelay": "^3.0.1",
|
2024-04-18 11:42:51 +00:00
|
|
|
"@push.rocks/smartexit": "^1.0.23",
|
2024-09-17 15:02:42 +00:00
|
|
|
"@push.rocks/smartpromise": "^4.0.4",
|
|
|
|
"@types/which": "^3.0.4",
|
2020-05-22 01:23:27 +00:00
|
|
|
"tree-kill": "^1.2.2",
|
2024-12-09 01:39:31 +00:00
|
|
|
"which": "^5.0.0"
|
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
|
|
|
]
|
2024-09-17 15:02:43 +00:00
|
|
|
}
|