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,
2023-06-22 12:17:50 +00:00
"version": "3.0.3",
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",
"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",
"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": {
"@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsrun": "^1.2.42",
"@gitzone/tstest": "^1.0.74",
2023-06-22 11:54:39 +00:00
"@pushrocks/tapbundle": "^5.0.8",
"@types/node": "^20.3.1"
2017-02-12 12:13:08 +00:00
},
"dependencies": {
"@pushrocks/smartdelay": "^3.0.1",
2021-11-07 18:18:01 +00:00
"@pushrocks/smartexit": "^1.0.20",
"@pushrocks/smartpromise": "^4.0.2",
"@types/which": "^3.0.0",
2020-05-22 01:23:27 +00:00
"tree-kill": "^1.2.2",
"which": "^3.0.1"
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
]
2023-06-22 09:51:45 +00:00
}