-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.01 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.01 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": "dockhero",
"version": "1.2.2",
"description": "Heroku CLI plugin to manage dockhero machines",
"main": "index.js",
"author": "@cloudcastle",
"repository": {
"type": "git",
"url": "https://github.com/cloudcastle/dockhero-cli.git"
},
"bugs": {
"url": "https://github.com/cloudcastle/dockhero-cli/issues"
},
"bin": {
"dh-docker": "./bin/dh-docker",
"dh-compose": "./bin/dh-compose"
},
"files": [
"bin/*",
"commands/*",
"index.js",
"package.json"
],
"keywords": [
"dockhero",
"docker",
"heroku",
"heroku-plugin"
],
"license": "ISC",
"dependencies": {
"bluebird": "^3.4.6",
"co": "^4.6.0",
"heroku-cli-util": "^6.0.14",
"lodash": "^4.17.4",
"mkdirp": "^0.5.1",
"netrc-parser": "^2.0.2",
"ora": "^0.3.0",
"tar": "^5.0.5"
},
"devDependencies": {
"standard": "*"
},
"scripts": {
"test": "standard",
"preversion": "npm test",
"postversion": "npm publish && git push && git push --tags"
}
}