-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
76 lines (76 loc) · 1.87 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
75
76
{
"name": "@heroku-cli/heroku-builds",
"version": "1.0.6",
"description": "Heroku CLI plugin to list and create builds for Heroku apps",
"repository": {
"type": "git",
"url": "https://github.com/heroku/heroku-builds.git"
},
"engines": {
"node": ">= 16.20.0"
},
"keywords": [
"heroku-plugin"
],
"author": "Heroku",
"license": "ISC",
"bugs": {
"url": "https://github.com/heroku/heroku-builds/issues"
},
"homepage": "https://github.com/heroku/heroku-builds",
"scripts": {
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md",
"build": "rm -rf dist && tsc -b && oclif manifest"
},
"oclif": {
"commands": "./dist/commands",
"bin": "heroku",
"devPlugins": [
"@oclif/plugin-help",
"@oclif/plugin-plugins"
]
},
"dependencies": {
"@heroku-cli/color": "2.0.3",
"@heroku-cli/command": "^11.3.1",
"@heroku-cli/schema": "^1.0.25",
"@oclif/core": "^2.16.0",
"http-call": "^5.3.0",
"ignore": "~ 5.3.1",
"strftime": "0.10.3",
"tar": "~6.2.1",
"tsheredoc": "^1.0.1"
},
"devDependencies": {
"@oclif/plugin-help": "^5",
"@oclif/plugin-plugins": "2.4.7",
"@oclif/test": "^2.3.28",
"@types/mocha": "^10",
"@types/nock": "^11.1.0",
"@types/node": "^16",
"@types/strftime": "^0.9.8",
"@types/tar": "^6.1.13",
"@types/tmp": "^0.2.6",
"chai": "^4",
"eslint": "^7.32.0",
"eslint-config-oclif": "^4.0.0",
"eslint-config-oclif-typescript": "^1.0.2",
"mocha": "9.2.2",
"mocha-junit-reporter": "2.2.1",
"mockdate": "3.0.5",
"nock": "^13",
"nyc": "^15.1.0",
"oclif": "2.2.0",
"sinon": "^18",
"stdout-stderr": "^0",
"tmp": "^0.2.3",
"ts-node": "^10",
"typescript": "^5"
},
"files": [
"/bin",
"/dist",
"/oclif.manifest.json"
]
}