-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
37 lines (37 loc) · 980 Bytes
/
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
{
"name": "@probot/adapter-github-actions",
"publishConfig": {
"access": "public"
},
"version": "0.0.0-development",
"description": "Adapter to run a Probot application function in GitHub Actions",
"main": "index.js",
"scripts": {
"test": "vitest",
"lint": "prettier --check '*.{js,md,json}' '.github/**/*.yml'",
"lint:fix": "prettier --write '*.{js,md,json}' '.github/**/*.yml'"
},
"keywords": [
"probot",
"probot-adapter",
"github-actions"
],
"author": "Steve Winton <[email protected]> (https://github.com/swinton)",
"contributors": [
"Gregor Martynus (https://github.com/gr2m)"
],
"license": "ISC",
"repository": "github:probot/adapter-github-actions",
"devDependencies": {
"nock": "^14.0.0-beta.5",
"prettier": "^3.2.5",
"vitest": "^2.0.0"
},
"dependencies": {
"@actions/core": "^1.10.1",
"pino": "^8.5.0",
"probot": "^13.0.2",
"through2": "^4.0.2"
},
"type": "module"
}