docker/package.json

77 lines
1.9 KiB
JSON
Raw Permalink Normal View History

2016-06-14 06:45:31 +00:00
{
2024-02-02 15:40:38 +00:00
"name": "@apiclient.xyz/docker",
2024-06-09 22:15:10 +00:00
"version": "1.2.2",
2024-04-23 18:10:36 +00:00
"description": "Provides easy communication with Docker remote API from Node.js, with TypeScript support.",
2019-01-09 23:31:48 +00:00
"private": false,
2020-03-22 23:53:31 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-10-17 07:36:35 +00:00
"type": "module",
2016-06-14 06:45:31 +00:00
"scripts": {
2020-09-30 16:35:24 +00:00
"test": "(tstest test/ --web)",
2022-10-17 07:36:35 +00:00
"build": "(tsbuild --web --allowimplicitany)",
"buildDocs": "tsdoc"
2016-06-14 06:45:31 +00:00
},
"repository": {
"type": "git",
2024-02-02 15:40:38 +00:00
"url": "git+https://gitlab.com/mojoio/docker.git"
2016-06-14 06:45:31 +00:00
},
"keywords": [
2024-04-23 17:58:04 +00:00
"Docker",
"API",
"Node.js",
"TypeScript",
"Containers",
"Images",
"Networks",
"Services",
"Secrets"
2016-06-14 06:45:31 +00:00
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
2024-02-02 15:40:38 +00:00
"url": "https://gitlab.com/mojoio/docker/issues"
2016-06-14 06:45:31 +00:00
},
2024-02-02 15:40:38 +00:00
"homepage": "https://gitlab.com/mojoio/docker#readme",
2016-06-14 07:17:07 +00:00
"dependencies": {
2024-05-08 17:58:09 +00:00
"@push.rocks/lik": "^6.0.15",
2024-06-09 22:15:01 +00:00
"@push.rocks/smartarchive": "^4.0.37",
"@push.rocks/smartbucket": "^3.0.13",
"@push.rocks/smartfile": "^11.0.20",
"@push.rocks/smartjson": "^5.0.20",
"@push.rocks/smartlog": "^3.0.7",
2024-02-02 15:40:38 +00:00
"@push.rocks/smartnetwork": "^3.0.0",
2024-05-08 17:58:09 +00:00
"@push.rocks/smartpath": "^5.0.18",
2024-02-02 15:40:38 +00:00
"@push.rocks/smartpromise": "^4.0.3",
2024-05-08 17:58:09 +00:00
"@push.rocks/smartrequest": "^2.0.22",
"@push.rocks/smartstream": "^3.0.44",
2024-05-08 17:58:09 +00:00
"@push.rocks/smartstring": "^4.0.15",
"@push.rocks/smartunique": "^3.0.9",
2024-05-08 17:58:09 +00:00
"@push.rocks/smartversion": "^3.0.5",
2024-06-09 22:15:01 +00:00
"@tsclass/tsclass": "^4.0.55",
2022-10-17 07:36:35 +00:00
"rxjs": "^7.5.7"
2016-06-15 22:45:43 +00:00
},
"devDependencies": {
"@git.zone/tsbuild": "^2.1.80",
2024-02-02 15:40:38 +00:00
"@git.zone/tsrun": "^1.2.12",
2024-05-08 17:58:09 +00:00
"@git.zone/tstest": "^1.0.90",
2024-06-09 22:15:01 +00:00
"@push.rocks/qenv": "^6.0.5",
2024-05-08 17:58:09 +00:00
"@push.rocks/tapbundle": "^5.0.23",
"@types/node": "20.14.2"
2019-08-14 18:56:57 +00:00
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2020-03-22 23:53:31 +00:00
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-08-14 18:56:57 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2020-09-30 16:35:24 +00:00
],
"browserslist": [
"last 1 chrome versions"
2019-08-14 18:56:57 +00:00
]
2024-04-23 17:58:05 +00:00
}