-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
43 lines (43 loc) · 949 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": "@enesusta/dcli",
"version": "1.1.4",
"description": "CLI for Docker",
"main": "index.js",
"bin": {
"dcli": "index.js"
},
"scripts": {
"test": "jest",
"cov": "jest --coverage",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/enesusta/dcli.git"
},
"keywords": [
"docker",
"cli"
],
"author": "Enes Usta",
"license": "ISC",
"bugs": {
"url": "https://github.com/enesusta/dcli/issues"
},
"homepage": "https://github.com/enesusta/dcli#readme",
"dependencies": {
"axios": "^0.19.2",
"colors": "^1.4.0",
"commander": "^5.0.0",
"inquirer": "^7.1.0",
"inquirer-autocomplete-prompt": "^1.0.2",
"lodash": "^4.17.15"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^8.2.0",
"sinon": "^9.2.0",
"coveralls": "^3.1.0",
"jest": "^26.6.1"
}
}