docker/package.json

68 lines
1.7 KiB
JSON
Raw Normal View History

2016-06-14 06:45:31 +00:00
{
2018-07-16 21:52:50 +00:00
"name": "@mojoio/docker",
2022-10-17 09:00:42 +00:00
"version": "1.0.105",
2016-07-28 17:41:14 +00:00
"description": "easy communication with docker remote api from node, TypeScript ready",
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",
"url": "git+ssh://git@gitlab.com/pushrocks/dockersock.git"
},
"keywords": [
"docker",
"sock",
"container",
"request",
"api"
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/dockersock/issues"
},
2016-06-14 07:17:07 +00:00
"homepage": "https://gitlab.com/pushrocks/dockersock#README",
"dependencies": {
2022-10-17 07:36:35 +00:00
"@pushrocks/lik": "^6.0.0",
"@pushrocks/smartfile": "^10.0.5",
"@pushrocks/smartjson": "^5.0.2",
"@pushrocks/smartlog": "^3.0.1",
"@pushrocks/smartnetwork": "^3.0.0",
"@pushrocks/smartpath": "^5.0.5",
2019-11-19 18:45:09 +00:00
"@pushrocks/smartpromise": "^3.0.6",
2022-10-17 07:36:35 +00:00
"@pushrocks/smartrequest": "^2.0.11",
"@pushrocks/smartstring": "^4.0.5",
"@pushrocks/smartversion": "^3.0.2",
"@tsclass/tsclass": "^4.0.24",
"rxjs": "^7.5.7"
2016-06-15 22:45:43 +00:00
},
"devDependencies": {
2020-09-30 16:27:43 +00:00
"@gitzone/tsbuild": "^2.1.25",
"@gitzone/tsrun": "^1.2.12",
2020-10-01 14:59:37 +00:00
"@gitzone/tstest": "^1.0.52",
2022-10-17 07:36:35 +00:00
"@pushrocks/tapbundle": "^5.0.4",
"@types/node": "^18.11.0"
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
]
2022-10-17 09:00:42 +00:00
}