-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
88 lines (88 loc) · 2.35 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
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@heroku-cli/plugin-addons-admin",
"description": "Heroku CLI plugin to help Heroku add-on providers integrate their services with Heroku.",
"version": "2.4.0",
"author": "Heroku",
"bugs": "https://github.com/heroku/heroku-cli-addons-admin/issues",
"dependencies": {
"@heroku-cli/color": "^2.0.4",
"@heroku-cli/command": "^11.4.0",
"@heroku/http-call": "5.4.0",
"@heroku-cli/schema": "^1.0.25",
"@oclif/core": "^2.16.0",
"diff": "^5.2.0",
"fs-extra": "^9.1.0",
"inquirer": "^8.2.6",
"lodash": "^4.17.21",
"open": "^8.4.2",
"randomstring": "^1.3.1",
"tslib": "2.8.1"
},
"devDependencies": {
"@oclif/plugin-help": "^5",
"@oclif/test": "^2.5.6",
"@types/chai": "^4",
"@types/diff": "^5.2.1",
"@types/fs-extra": "^9.0.13",
"@types/inquirer": "^8.2.10",
"@types/mocha": "^10.0.10",
"@types/node": "^22.8.7",
"@types/randomstring": "^1.3.0",
"@types/supports-color": "^8.1.3",
"chai": "^4",
"eslint": "^8.57.0",
"eslint-config-oclif": "^5.0.0",
"eslint-config-oclif-typescript": "^3.0.26",
"mocha": "^10.7.3",
"nock": "^13.5.6",
"nyc": "^17.1.0",
"oclif": "4.14.36",
"sinon": "^18.0.0",
"ts-node": "^10.9.2",
"tsheredoc": "^1.0.1",
"typescript": "5.7.3"
},
"engines": {
"node": ">= 20.0"
},
"files": [
"/lib",
"/oclif.manifest.json",
"/yarn.lock"
],
"homepage": "https://github.com/heroku/heroku-cli-addons-admin",
"keywords": [
"oclif-plugin"
],
"license": "MIT",
"mocha": {
"require": [
"test/helpers/init.js",
"ts-node/register",
"source-map-support/register"
],
"watch-extensions": "ts",
"recursive": true,
"reporter": "spec",
"timeout": 5000
},
"oclif": {
"commands": "./lib/commands",
"bin": "heroku",
"devPlugins": [
"@oclif/plugin-help"
]
},
"repository": "heroku/heroku-cli-addons-admin",
"scripts": {
"build": "rm -rf lib && tsc",
"clean:branch": "./bin/clean-branch.sh",
"lint": "eslint . --ext .ts --config .eslintrc",
"postpack": "rm -f oclif.manifest.json",
"posttest": "tsc -p test --noEmit",
"prepack": "yarn build && oclif manifest && oclif readme",
"pretest": "yarn build",
"test": "nyc mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md"
}
}