-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.31 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
41
42
43
44
45
46
47
48
49
{
"name": "rerun-pr-workflows-action",
"version": "0.0.0+main",
"private": true,
"description": "Re-run GitHub workflows for incoming Pull Requests",
"main": "target/js/src/main.js",
"scripts": {
"build": "tsc -b src",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint '**/*.ts'",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/twz123/rerun-pr-workflows-action.git"
},
"keywords": [
"actions",
"node"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "^1",
"@actions/github": "^6",
"@octokit/webhooks-types": "^7"
},
"devDependencies": {
"@tsconfig/node20": "^20",
"@types/node": "^20",
"@typescript-eslint/eslint-plugin": "^7",
"@typescript-eslint/parser": "^6",
"@vercel/ncc": "~0.38",
"eslint": "^8",
"eslint-plugin-github": "^5",
"eslint-plugin-jest": "^28",
"eslint-plugin-prettier": "^5",
"jest": "^29",
"jest-mock-random": "^1.1.1",
"js-yaml": "^4",
"prettier": "^3",
"ts-jest": "^29",
"ts-node": "^10",
"typescript": "^5"
}
}