smartssh/package.json

63 lines
1.5 KiB
JSON
Raw Normal View History

2016-04-24 21:47:26 +00:00
{
2023-07-27 13:52:01 +00:00
"name": "@push.rocks/smartssh",
2023-07-27 13:52:02 +00:00
"version": "2.0.1",
2018-09-17 20:32:31 +00:00
"private": false,
2016-04-24 21:47:26 +00:00
"description": "setups SSH quickly and in a painless manner",
2022-10-11 11:05:29 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
2016-04-24 21:47:26 +00:00
"scripts": {
2018-09-17 20:32:31 +00:00
"test": "(tstest test/)",
2019-07-17 09:48:31 +00:00
"testDocker": "tsdocker",
2022-10-11 11:18:04 +00:00
"build": "(tsbuild --allowimplicitany)",
2022-10-11 11:05:29 +00:00
"buildDocs": "tsdoc"
2016-04-24 21:47:26 +00:00
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/pushrocks/smartssh.git"
2016-04-24 21:47:26 +00:00
},
"keywords": [
"SSH",
"ENV",
"base64"
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/smartssh/issues"
2016-04-24 21:47:26 +00:00
},
"homepage": "https://gitlab.com/pushrocks/smartssh#readme",
2016-04-25 02:06:20 +00:00
"dependencies": {
2023-07-27 13:52:01 +00:00
"@push.rocks/smartfile": "^10.0.28",
"@push.rocks/smartpath": "^5.0.11",
"@push.rocks/smartpromise": "^4.0.3",
"@push.rocks/smartshell": "^3.0.3",
"@push.rocks/smartstring": "^4.0.7",
"@types/fs-extra": "^11.0.1",
"fs-extra": "^11.1.1",
"minimatch": "^9.0.3"
2016-04-25 02:06:20 +00:00
},
"devDependencies": {
2023-07-27 13:52:01 +00:00
"@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsrun": "^1.2.44",
"@gitzone/tstest": "^1.0.77",
"@push.rocks/tapbundle": "^5.0.12",
"@types/node": "^20.4.5"
2019-07-17 09:48:31 +00:00
},
"files": [
2022-10-11 11:05:29 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-07-17 09:48:31 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2022-10-11 11:05:29 +00:00
],
"browserslist": [
"last 1 chrome versions"
2019-07-17 09:48:31 +00:00
]
2023-07-27 13:52:02 +00:00
}