docker/package.json

63 lines
1.5 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",
2019-11-20 13:36:36 +00:00
"version": "1.0.91",
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,
2016-06-14 06:45:31 +00:00
"main": "dist/index.js",
2016-07-11 15:24:00 +00:00
"typings": "dist/index.d.ts",
2016-06-14 06:45:31 +00:00
"scripts": {
2019-01-09 23:31:48 +00:00
"test": "tstest test/",
"build": "tsbuild"
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": {
2019-09-08 14:34:26 +00:00
"@pushrocks/lik": "^3.0.11",
2019-11-19 18:45:09 +00:00
"@pushrocks/smartfile": "^7.0.6",
2019-09-12 12:45:36 +00:00
"@pushrocks/smartjson": "^3.0.8",
2019-11-19 18:45:09 +00:00
"@pushrocks/smartlog": "^2.0.21",
2019-11-20 13:27:17 +00:00
"@pushrocks/smartnetwork": "^1.1.16",
2019-09-13 16:15:45 +00:00
"@pushrocks/smartpath": "^4.0.1",
2019-11-19 18:45:09 +00:00
"@pushrocks/smartpromise": "^3.0.6",
"@pushrocks/smartrequest": "^1.1.42",
"@pushrocks/smartstring": "^3.0.14",
2019-09-11 18:25:45 +00:00
"@pushrocks/smartversion": "^2.0.4",
2019-09-08 14:34:26 +00:00
"rxjs": "^6.5.3"
2016-06-15 22:45:43 +00:00
},
"devDependencies": {
2019-09-08 14:34:26 +00:00
"@gitzone/tsbuild": "^2.1.17",
2019-08-14 12:19:45 +00:00
"@gitzone/tsrun": "^1.2.8",
2019-11-19 18:45:09 +00:00
"@gitzone/tstest": "^1.0.28",
"@pushrocks/tapbundle": "^3.2.0",
2019-11-20 13:27:17 +00:00
"@types/node": "^12.12.11",
2019-11-19 18:45:09 +00:00
"tslint": "^5.20.1",
2019-08-14 12:19:45 +00:00
"tslint-config-prettier": "^1.18.0"
2019-08-14 18:56:57 +00:00
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_web/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-08-14 18:56:57 +00:00
"cli.js",
"npmextra.json",
"readme.md"
]
2019-11-20 13:36:04 +00:00
}