-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.36 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.36 KB
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
{
"name": "docker-cli-js",
"version": "2.10.0",
"description": "A node.js wrapper for the docker command line interface CLI",
"main": "dist/index.js",
"typings": "dist/index",
"files": [
"dist/"
],
"scripts": {
"lint": "tslint --project .",
"lintfix": "tslint --project . --fix",
"build": "rimraf dist/ && tsc",
"prepare": "npm run build",
"test-spec": "ts-node node_modules/blue-tape/bin/blue-tape.js \"src/**/*.spec.ts\" | tap-diff",
"test": "npm run lint && npm run build && npm run test-spec",
"prepublish": "npm run lint && npm run build && rimraf \"dist/**/*.spec.*\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Quobject/docker-cli-js.git"
},
"keywords": [
"docker",
"docker cli"
],
"author": "Matthias Ludwig <mludwig@quobject.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Quobject/docker-cli-js/issues"
},
"homepage": "https://github.com/Quobject/docker-cli-js",
"devDependencies": {
"@types/node": "10.9.1",
"@types/blue-tape": "0.1.32",
"blue-tape": "1.0.0",
"rimraf": "2.6.2",
"tap-diff": "0.1.1",
"ts-node": "7.0.1",
"tslint": "5.11.0",
"typescript": "3.3.4000"
},
"dependencies": {
"cli-table-2-json": "1.0.13",
"dockermachine-cli-js": "3.0.5",
"lodash.snakecase": "^4.1.1",
"nodeify-ts": "1.0.6"
}
}