forked from gregolsky/whales-names
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.14 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "whales-names",
"version": "0.1.3",
"description": "Simplistic solution of `why can't I reach my docker containers by name?'. Update hosts file (/etc/hosts) with docker container names and watch for changes",
"main": "index.js",
"files": [
"lib/",
"bin/"
],
"keywords": [
"docker",
"containers",
"hostname",
"host",
"hostnames",
"hosts",
"dns"
],
"preferGlobal": true,
"bin": {
"whales-names": "bin/whales-names"
},
"scripts": {
"lint": "eslint lib/**/*.js",
"nodemon": "nodemon lib/index.js",
"build": "babel src --out-dir lib"
},
"repository": {
"type": "git",
"url": "git@github.com:gregolsky/whales-names.git"
},
"bugs": {
"email": "gregory.lachowski+whalesnames@gmail.com",
"url": "https://github.com/gregolsky/whales-names/issues"
},
"engines": {
"node": ">=6.0.0"
},
"author": "Grzegorz Lachowski",
"license": "MIT",
"dependencies": {
"dockerode": "^2.5.2",
"util.promisify": "^1.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.0",
"eslint": "^4.8.0",
"nodemon": "^1.12.1"
}
}