This repository has been archived by the owner on Feb 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
74 lines (74 loc) · 1.75 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
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@heroku-cli/plugin-apps",
"description": "Heroku CLI plugin to manage apps.",
"version": "2.6.0",
"author": "Jeff Dickey (@jdxcode)",
"bugs": {
"url": "https://github.com/heroku/heroku-apps/issues"
},
"cli-engine": {
"bin": "heroku",
"topics": {
"stack": {
"description": "manage heroku stacks",
"hidden": true
}
}
},
"dependencies": {
"@heroku-cli/command": "^8.1.20",
"co": "^4.6.0",
"filesize": "^3.5.11",
"fs-extra": "^6.0.1",
"heroku-cli-util": "^8.0.9",
"inquirer": "^5.2.0",
"js-yaml": "^3.9.1",
"lodash": "^4.17.10",
"shell-escape": "^0.2.0",
"sparkline": "^0.2.0",
"strftime": "^0.10.0",
"term-img": "^2.1.0",
"urijs": "1.19.1"
},
"devDependencies": {
"@oclif/dev-cli": "^1.13.28",
"@oclif/plugin-legacy": "^1.0.15",
"chai": "^4.1.2",
"lolex": "^2.7.0",
"mocha": "^5.2.0",
"mockdate": "^2.0.2",
"netrc-parser": "^3.1.5",
"nock": "9.3.0",
"proxyquire": "^2.0.1",
"standard": "^11.0.1",
"std-mocks": "1.0.1",
"testdouble": "^3.8.1",
"time-require": "0.1.2",
"unexpected": "^10.38.0"
},
"files": [
"/.oclif.manifest.json",
"assets",
"src"
],
"homepage": "https://github.com/heroku/heroku-apps",
"keywords": [
"heroku-plugin"
],
"license": "ISC",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/heroku/heroku-apps.git"
},
"scripts": {
"postpublish": "rm .oclif.manifest.json",
"posttest": "standard",
"prepublishOnly": "oclif-dev manifest && oclif-dev readme --multi",
"test": "TZ=utc mocha",
"version": "oclif-dev readme --multi && git add README.md docs"
},
"standard": {
"env": "mocha"
}
}