-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 936 Bytes
/
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
{
"name": "dockeasy",
"description": "super simple and easy to use docker CLI for purging, building, bootstrapping and deploying new containers",
"keywords": [
"cli",
"docker",
"utils"
],
"author": "Christian Sanz <[email protected]>",
"version": "0.0.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/csanz/dockeasy"
},
"engines": {
"node": ">=8.9.4"
},
"dependencies": {
"colors": "*",
"mocha": "5.2.0",
"async": "3.0.1-0",
"line-reader": "0.4.0",
"fs-extra": "^7.0.1",
"commander": "2.19.0",
"shelljs": "0.8.3",
"docker-file-parser": "1.0.4"
},
"directories": {
"test": "./test"
},
"main": "./index.js",
"bin": {
"dockeasy": "./bin/cli.js"
},
"scripts": {
"start": "node bin/cli.js",
"test": "standard && mocha ./test/test.js"
},
"devDependencies": {
"standard": "^12.0.1"
}
}