forked from jdolitsky/dockerspaniel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.07 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.07 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
50
51
52
{
"version": "0.1.7",
"name": "dockerspaniel",
"description": "Create Dockerfiles from JSON",
"keywords": [
"docker",
"dockerfile",
"json",
"dockerspaniel",
"spaniel",
"spanielfile"
],
"preferGlobal": true,
"config": {
"publishtest": false
},
"homepage": "https://github.com/jdolitsky/dockerspaniel",
"author": {
"name": "Josh Dolitsky",
"email": "jdolitsky@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jdolitsky/dockerspaniel.git"
},
"directories": {
"bin": "./bin",
"lib": "./lib"
},
"main": "./lib/dockerspaniel.js",
"bin": "./bin/dockerspaniel-cli.js",
"dependencies": {
"async": "0.9.0",
"habitat": "1.1.0",
"handlebars": "2.0.0-alpha.4",
"mkdirp": "0.5.0",
"yargs": "1.2.2"
},
"devDependencies": {
"coveralls": "2.10.0",
"istanbul": "0.2.10",
"mocha": "1.19.0",
"should": "3.3.2"
},
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "mocha ./test/*.js --reporter spec; rm -rf ./test/tmp"
}
}