-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
136 lines (136 loc) · 3.84 KB
/
Copy pathpackage.json
File metadata and controls
136 lines (136 loc) · 3.84 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
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "@heroku-cli/plugin-applink",
"description": "Heroku CLI plugin for Heroku AppLink add-on",
"version": "2.0.3",
"type": "module",
"author": "Heroku",
"bugs": "https://github.com/heroku/heroku-cli-plugin-applink/issues",
"dependencies": {
"@heroku-cli/command": "^13.0.0",
"@heroku-cli/schema": "^2.0.1",
"@heroku/heroku-cli-util": "^10.9.0",
"@oclif/core": "^4.3.0",
"@oclif/plugin-help": "^6",
"adm-zip": "^0.6.0",
"axios": "1.19.0",
"open": "^8.4.2",
"tsheredoc": "^1"
},
"devDependencies": {
"@heroku-cli/test-utils": "^1.0.1",
"@types/adm-zip": "^0.5.7",
"@types/mocha": "^10.0.10",
"@types/node": "^24.7.0",
"@types/sinon": "^22.0.0",
"ansis": "^3",
"c8": "^10.1.3",
"chai": "^5.1.2",
"eslint": "^9.39.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"mocha": "^11.7.5",
"nock": "^14.0.1",
"oclif": "^4.22.81",
"prettier": "^3.7.4",
"sinon": "^22.1.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"engines": {
"node": ">= 22"
},
"files": [
"oclif.manifest.json",
"dist"
],
"homepage": "https://github.com/heroku/heroku-cli-plugin-applink",
"keywords": [
"heroku-plugin",
"oclif"
],
"license": "Apache-2.0",
"oclif": {
"bin": "heroku",
"commands": "./dist/commands",
"devPlugins": [
"@oclif/plugin-help"
],
"topicSeparator": ":",
"topics": {
"applink": {
"description": "access information and generate Heroku AppLink projects",
"subtopics": {
"authorizations": {
"description": "list and view AppLink authorizations"
},
"connections": {
"description": "list and view AppLink connections"
}
}
},
"datacloud": {
"description": "manage Heroku app connections to a Data Cloud Org",
"subtopics": {
"authorizations": {
"description": "manage authorizations for connecting Data Cloud orgs to Heroku apps",
"subtopics": {
"jwt": {
"description": "manage JWT-based authorizations for Data Cloud connections"
}
}
},
"data-action-target": {
"description": "manage data action targets for Data Cloud connections"
}
}
},
"salesforce": {
"description": "manage Heroku app connections to a Salesforce Org",
"subtopics": {
"authorizations": {
"description": "manage authorizations for connecting Salesforce orgs to Heroku apps",
"subtopics": {
"jwt": {
"description": "manage JWT-based authorizations for Salesforce connections"
}
}
},
"connect": {
"description": "manage connections between Salesforce orgs and Heroku apps"
}
}
}
}
},
"repository": "heroku/heroku-cli-plugin-applink",
"scripts": {
"prepare": "husky",
"build": "rm -rf dist && tsc",
"postpublish": "rm -f oclif.manifest.json",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier . --write --config ./.prettier.mjs",
"format": "npm run prettier && npm run lint:fix",
"pretest": "npm run type-check",
"test": "c8 mocha --forbid-only \"test/**/*.test.ts\"",
"test:local": "c8 mocha \"test/**/*.test.ts\"",
"posttest": "npm run lint",
"type-check": "tsc --noEmit",
"lint-staged": "npx lint-staged",
"check": "npm run format && npm test",
"ci": "npm run lint && npm test",
"version": "oclif readme && git add README.md"
},
"lint-staged": {
"**/*.{js,ts}": [
"prettier --write",
"eslint --fix"
],
"**/*.{json,md,yaml,yml}": [
"prettier --write"
]
},
"overrides": {
"serialize-javascript": "^7.0.3"
}
}