generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.62 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.62 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
48
49
{
"description": "Enabling Branch Deployments through IssueOps with GitHub Actions",
"type": "module",
"main": "lib/main.js",
"scripts": {
"format": "prettier --write '**/*.js'",
"format-check": "prettier --check '**/*.js'",
"lint": "eslint src/**/*.js",
"package": "ncc build src/main.js -o dist --source-map --license licenses.txt",
"test": "mkdir -p badges && BRANCH_DEPLOY_VITEST_TEST=true vitest run --coverage && make-coverage-badge --output-path ./badges/coverage.svg",
"ci-test": "BRANCH_DEPLOY_VITEST_TEST=true vitest run --coverage",
"all": "npm run format && npm run lint && npm run package",
"bundle": "npm run format && npm run package",
"act": "npm run format && npm run package && act issue_comment -e events/issue_comment_deploy.json -s GITHUB_TOKEN=faketoken -j test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/github/branch-deploy.git"
},
"keywords": [
"actions",
"issueops",
"deployment",
"github"
],
"author": "Grant Birkinbine",
"license": "MIT",
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.0.0",
"@octokit/plugin-retry": "^8.0.3",
"@octokit/request": "^10.0.7",
"@octokit/rest": "^22.0.1",
"dedent-js": "^1.0.1",
"github-username-regex-js": "^1.0.0",
"nunjucks": "^3.2.4",
"yargs-parser": "^22.0.0"
},
"devDependencies": {
"@types/node": "^25.1.0",
"@vercel/ncc": "^0.38.4",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.39.2",
"js-yaml": "^4.1.1",
"make-coverage-badge": "^1.2.0",
"prettier": "^3.8.1",
"vitest": "^4.0.16"
}
}