forked from probot/adapter-github-actions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 990 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": "jest --coverage",
"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": {
"@types/jest": "^29.0.0",
"jest": "^29.0.2",
"nock": "^13.0.7",
"prettier": "^2.2.1"
},
"dependencies": {
"@actions/core": "^1.2.6",
"pino": "^8.5.0",
"probot": "^12.2.1",
"through2": "^4.0.2"
}
}