docker/package.json
2016-06-16 04:45:28 +02:00

41 lines
1.1 KiB
JSON

{
"name": "dockersock",
"version": "1.0.3",
"description": "easy communication with docker from node, TypeScript ready",
"main": "dist/index.js",
"scripts": {
"test": "npmts --notest && npm run build && npm run startdocker && npm run cleanup",
"build": "docker build -t npmts-test-image .",
"startdocker": "docker run -v /var/run/docker.sock:/var/run/docker.sock --name npmts-test-container npmts-test-image",
"cleanup": "docker rm npmts-test-container && docker rmi npmts-test-image"
},
"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"
},
"homepage": "https://gitlab.com/pushrocks/dockersock#README",
"dependencies": {
"beautylog": "^5.0.10",
"q": "^1.4.1",
"request": "^2.72.0",
"typings-global": "^1.0.3"
},
"devDependencies": {
"npmts-g": "^5.2.6",
"should": "^9.0.2",
"typings-test": "^1.0.1"
}
}