-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.28 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.28 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
{
"name": "docker-cmd",
"version": "0.2.2",
"description": "A Docker NodeJS lib wrapping the Docker command line and manage it from a json file.",
"keywords": ["docker"],
"homepage": "http://github.com/iorga-group/docker-cmd",
"repository": {
"type": "git",
"url": "https://github.com/iorga-group/docker-cmd.git"
},
"bugs": "https://github.com/iorga-group/docker-cmd/issues",
"license": "Apache-2.0",
"author": "Anthony Ogier <npm@iorga.com>",
"main": "index.js",
"dependencies": {
"minimist": "~1.1.0",
"extend": "~1.3.0",
"mstring": "~0.1.2"
},
"devDependencies": {
"mocha": "~1.21.4",
"should": "~4.0.4",
"sinon": "~1.10.3",
"mock-spawn": "~0.2.1",
"blanket": "~1.1.6",
"travis-cov": "~0.2.5",
"mocha-multi": "~0.4.1",
"mock-utf8-stream": "~0.1.1"
},
"config": {
"blanket": {
"pattern": "lib/docker"
}
},
"scripts": {
"test": "multi='travis-cov=- dot=-' ./node_modules/.bin/mocha --require blanket -R mocha-multi",
"test-html-cov-report": "./node_modules/.bin/mocha --require blanket -R html-cov > coverage.html"
},
"bin": {
"docker-cm": "./bin/docker-cm.js"
}
}