generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.31 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.31 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
50
51
{
"name": "prow-github-actions",
"version": "1.1.3",
"description": "Slash commands, jobs, and chat-ops for Github actions inspired by Kubernetes Prow",
"author": "John McBride",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jpmcb/prow-github-actions.git"
},
"keywords": [
"actions",
"prow"
],
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"lint": "eslint",
"lint:fix": "eslint --fix",
"pack": "ncc build",
"test": "jest",
"test-all": "npm run build && npm run pack && npm test",
"all": "npm run build && npm run lint:fix && npm run lint && npm run pack && npm test"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^6.0.0",
"@octokit/rest": "^20.0.1",
"@octokit/types": "^11.1.0",
"@octokit/webhooks": "^12.0.3",
"eslint": "^9.32.0",
"minimatch": "^9.0.3"
},
"engine": {
"node": ">=18.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^4.11.0",
"@types/jest": "^29.5.3",
"@types/js-yaml": "^4.0.5",
"@types/minimatch": "^5.1.2",
"@types/node": "^20.5.1",
"@vercel/ncc": "^0.38.0",
"jest": "^29.6.2",
"jest-circus": "^29.6.2",
"js-yaml": "^4.1.0",
"msw": "^2.7.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}