This commit is contained in:
Philipp Kunz 2016-06-14 09:17:07 +02:00
parent 6aed9e98e5
commit c91dc1e9e2
5 changed files with 18 additions and 4 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
docs/
coverage/
node_modules/

View File

@ -9,9 +9,7 @@ stages:
- trigger
before_script:
- npm uninstall -g npmci
- npm install -g npmci
- npmci prepare docker
- npmci prepare docker-gitlab
build:

3
npmts.json Normal file
View File

@ -0,0 +1,3 @@
{
"mode":"default"
}

View File

@ -22,5 +22,11 @@
"bugs": {
"url": "https://gitlab.com/pushrocks/dockersock/issues"
},
"homepage": "https://gitlab.com/pushrocks/dockersock#README"
"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"
}
}

4
ts/dockersock.plugins.ts Normal file
View File

@ -0,0 +1,4 @@
import "typings-global";
export import beautylog = require("beautylog");
export let q = require("q");
export let request = require("request");