-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.26 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.26 KB
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
41
42
43
44
45
46
47
{
"name": "deploy-action",
"version": "1.1.5",
"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": "^30.1.2",
"@types/jest": "^30.0.0",
"@types/node": "^24.3.1",
"esbuild": "^0.25.9",
"eslint": "^9.35.0",
"jest": "^30.1.3",
"jest-diff": "^30.1.2",
"jest-watcher": "^30.1.3",
"prettier": "^3.6.2"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.1",
"@actions/http-client": "^2.2.3",
"@octokit/rest": "^22.0.0",
"lodash": "^4.17.21",
"to-readable-stream": "^4.0.0"
}
}