-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.49 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
52
53
54
55
56
57
58
59
60
61
62
{
"name": "cli-to-docker-compose",
"description": "Conver docker cli to docker-compose.yml format",
"version": "0.4.1",
"homepage": "https://github.com/Ti-webdev/cli-to-docker-compose",
"author": {
"name": "Ti",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/Ti-webdev/cli-to-docker-compose.git"
},
"bugs": {
"url": "https://github.com/Ti-webdev/cli-to-docker-compose/issues"
},
"licenses": [
{
"type": "Open Works License (OWL)",
"url": "https://github.com/Ti-webdev/cli-to-docker-compose/blob/master/LICENSE"
}
],
"main": "lib/cli-to-docker-compose.js",
"bin": {
"cli-to-docker-compose": "./bin/cli-to-docker-compose.js"
},
"files": [
"bin",
"dist",
"lib"
],
"engines": {
"node": ">= 4.0.0",
"npm": ">=1.4.3"
},
"scripts": {
"test": "./node_modules/gulp/bin/gulp.js test"
},
"devDependencies": {
"chai": "^3.5.0",
"gulp": "^3.9.1",
"gulp-clean": "^0.3.2",
"gulp-coveralls": "^0.1.4",
"gulp-help": "^1.6.1",
"gulp-jscs": "^3.0.2",
"gulp-jshint": "^2.0.0",
"gulp-mocha": "^2.2.0",
"jshint": "^2.9.2",
"jshint-stylish": "^2.1.0",
"mocha-lcov-reporter": "1.2.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"keywords": [],
"dependencies": {
"gulp-jshint": "^2.0.1",
"js-yaml": "^3.6.1",
"jshint-stylish": "^2.2.0",
"optimist": "^0.6.1",
"string-argv": "0.0.2"
}
}