forked from peter-murray/workflow-application-token-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 826 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
{
"name": "workflow-application-token-action",
"version": "2.1.0",
"description": "GitHub Action to generate a GitHub Application access token for use in GitHub Actions workflows",
"main": "index.js",
"scripts": {
"test": "mocha --recursive \"lib/**/*.test.js\"",
"build": "npx @vercel/[email protected] build -m index.js"
},
"keywords": [
"github-actions",
"github",
"actions",
"github-application",
"token"
],
"author": "peter-murray",
"license": "MIT",
"repository": {
"url": "https://github.com/peter-murray/workflow-application-token-action"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"https-proxy-agent": "^5.0.1",
"jsonwebtoken": "^8.5.1"
},
"devDependencies": {
"chai": "^4.3.4",
"mocha": "^9.1.2"
}
}