-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1015 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 1015 Bytes
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
{
"name": "create-github-deployment",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm ci && esbuild ./src/main.js --bundle --platform=node --outfile=dist/index.js && npm run format && git add dist/*",
"bundle": "esbuild ./src/main.js --bundle --platform=node --outfile=dist/index.js",
"format": "prettier --write **/*.js",
"format-check": "prettier --check **/*.js",
"test": "./node_modules/.bin/jest --json --outputFile=./jest-results.json ./src/"
},
"keywords": [],
"author": "wtw",
"license": "ISC",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^6.0.0",
"@babel/types": "^7.23.9",
"@octokit/action": "^6.0.7",
"@octokit/graphql": "^7.0.2",
"@octokit/rest": "^20.0.2",
"date-fns": "^2.22.1",
"date-fns-tz": "^1.1.4"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"esbuild": "^v0.25.0",
"install": "^0.13.0",
"jest": "^29.7.0",
"prettier": "^3.1.1"
}
}