forked from peter-murray/workflow-application-token-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1011 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
{
"name": "workflow-application-token-action",
"version": "3.0.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-main": "npx @vercel/[email protected] build -m index.js -o dist/main -s",
"build-post": "npx @vercel/[email protected] build -m post.js -o dist/post -s",
"build": "npm run build-main && npm run build-post"
},
"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.1",
"@actions/github": "^6.0.0",
"https-proxy-agent": "^7.0.2",
"jsonwebtoken": "^9.0.2"
},
"devDependencies": {
"chai": "^4.3.4",
"mocha": "^9.1.2",
"@vercel/ncc": "^0.38.1"
}
}