smartssh/package.json

70 lines
1.7 KiB
JSON
Raw Permalink Normal View History

2016-04-24 21:47:26 +00:00
{
2023-07-27 13:52:01 +00:00
"name": "@push.rocks/smartssh",
2024-02-09 17:21:33 +00:00
"version": "2.0.2",
2018-09-17 20:32:31 +00:00
"private": false,
2024-04-14 16:22:42 +00:00
"description": "A library for setting up SSH configuration quickly and painlessly.",
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",
2024-05-29 12:16:27 +00:00
"url": "https://code.foss.global/push.rocks/smartssh.git"
2016-04-24 21:47:26 +00:00
},
"keywords": [
"SSH",
2024-04-14 16:22:42 +00:00
"SSH configuration",
"SSH keys management",
"automation",
"development tools",
"node.js",
"security",
"server management"
2016-04-24 21:47:26 +00:00
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/smartssh/issues"
2016-04-24 21:47:26 +00:00
},
2024-05-29 12:16:27 +00:00
"homepage": "https://code.foss.global/push.rocks/smartssh",
2016-04-25 02:06:20 +00:00
"dependencies": {
2024-02-09 17:21:33 +00:00
"@push.rocks/smartcrypto": "^2.0.5",
"@push.rocks/smartfile": "^11.0.4",
"@push.rocks/smartjson": "^5.0.10",
2023-07-27 13:52:01 +00:00
"@push.rocks/smartpath": "^5.0.11",
"@push.rocks/smartpromise": "^4.0.3",
"@push.rocks/smartshell": "^3.0.3",
2024-02-09 17:21:33 +00:00
"@push.rocks/smartstring": "^4.0.13",
"@types/fs-extra": "^11.0.4",
"fs-extra": "^11.2.0",
"minimatch": "^9.0.3",
"node-ssh": "^13.1.0"
2016-04-25 02:06:20 +00:00
},
"devDependencies": {
2024-02-09 17:21:33 +00:00
"@git.zone/tsbuild": "^2.1.72",
"@git.zone/tsrun": "^1.2.46",
"@git.zone/tstest": "^1.0.86",
"@push.rocks/tapbundle": "^5.0.15",
"@types/node": "^20.11.17"
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
]
2024-04-14 16:22:42 +00:00
}