-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
80 lines (80 loc) · 2 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
{
"name": "@heroku-cli/plugin-api",
"description": "access the Heroku API directly",
"version": "2.3.0",
"author": "Heroku",
"bugs": {
"url": "https://github.com/heroku/heroku-api-plugin/issues"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@heroku/http-call": "^5.4.0",
"@heroku-cli/color": "^1.1.14",
"@heroku-cli/command": "^11.4.0",
"@oclif/core": "^2.16.0",
"edit-string": "^1.1.6",
"fs-extra": "^9.0.1",
"get-stdin": "8.0.0",
"tsheredoc": "^1.0.1",
"http-call": "^5.3.0"
},
"devDependencies": {
"@oclif/test": "^2.3.28",
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.6",
"@types/node": "^20.14.8",
"@types/supports-color": "^8.1.3",
"chai": "^4.4.1",
"eslint": "^8.57.1",
"eslint-config-oclif": "^5.2.2",
"eslint-config-oclif-typescript": "^3.1.13",
"eslint-plugin-oclif": "^0.1.0",
"globby": "^13.2.2",
"mocha": "^10.4.0",
"nock": "^13.5.1",
"nyc": "^15.1.0",
"oclif": "^4.17.13",
"ts-node": "^10.9.2",
"typescript": "4.8.4"
},
"files": [
"oclif.manifest.json",
"lib"
],
"homepage": "https://github.com/heroku/heroku-api-plugin",
"keywords": [
"heroku-plugin"
],
"license": "ISC",
"mocha": {
"require": [
"ts-node/register",
"source-map-support/register"
],
"watch-extensions": "ts",
"recursive": true,
"reporter": "spec",
"timeout": 360000
},
"oclif": {
"bin": "heroku",
"commands": "./lib/commands"
},
"repository": "heroku/heroku-api-plugin",
"resolutions": {
"isbinaryfile": "4.0.10"
},
"scripts": {
"build": "rm -rf lib && tsc",
"lint": "eslint . --ext .ts --config=.eslintrc",
"postpublish": "rm oclif.manifest.json",
"posttest": "yarn lint && tsc --noEmit -p test",
"prepare": "yarn build",
"prepack": "yarn build && oclif manifest",
"pretest": "yarn build && oclif manifest",
"test": "nyc mocha test/**/*.test.ts",
"version": "oclif readme && git add README.md"
}
}