-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.18 KB
/
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
38
39
40
{
"name": "deploy-action",
"version": "1.1.3",
"description": "A GitHub Action which allows for deployments to the Arc XP platform.",
"main": "src/index.cjs",
"scripts": {
"build": "esbuild src/index.cjs --bundle --platform=node --resolve-extensions=.cjs,.ts,.js --target=node20 --outfile=dist/index.cjs",
"clean": "rm -rf dist/*",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arcxp/deploy-action.git"
},
"keywords": ["github", "actions", "arcxp", "deploy"],
"author": "Mike Stemle <mike.stemle@washpost.com>",
"license": "MIT",
"type": "commonjs",
"bugs": {
"url": "https://github.com/arcxp/deploy-action/issues"
},
"homepage": "https://github.com/arcxp/deploy-action#readme",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"esbuild": "^0.20.2",
"eslint": "^9.0.0",
"jest": "^29.7.0",
"prettier": "^3.2.5"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@actions/http-client": "^2.2.1",
"@octokit/rest": "^20.1.0",
"lodash": "^4.17.21",
"to-readable-stream": "^4.0.0"
}
}