smartshell/package.json

65 lines
1.5 KiB
JSON
Raw Permalink Normal View History

2017-02-12 12:13:08 +00:00
{
2024-03-16 10:18:53 +00:00
"name": "@push.rocks/smartshell",
"private": false,
2024-04-18 11:42:51 +00:00
"version": "3.0.5",
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",
"type": "module",
2017-02-12 12:13:08 +00:00
"scripts": {
2018-08-05 21:27:37 +00:00
"test": "(tstest test/)",
"build": "(tsbuild --web)",
"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-03-16 10:18:53 +00:00
"@git.zone/tsbuild": "^2.1.66",
"@git.zone/tsrun": "^1.2.44",
"@git.zone/tstest": "^1.0.77",
2024-04-18 11:42:51 +00:00
"@push.rocks/tapbundle": "^5.0.23",
"@types/node": "^20.12.7"
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-03-16 10:18:53 +00:00
"@push.rocks/smartpromise": "^4.0.2",
"@types/which": "^3.0.3",
2020-05-22 01:23:27 +00:00
"tree-kill": "^1.2.2",
2024-03-16 10:18:53 +00:00
"which": "^4.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-05-29 12:16:08 +00:00
}