-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.13 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": "issue-runner",
"version": "0.0.0",
"private": false,
"description": "A toolkit to monitor issues, run Minimal Working Examples, and report results back.",
"scripts": {
"prod": "webpack --mode production",
"dev": "webpack --mode development",
"compile": "webpack --mode none",
"build": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/umarcor/issue-runner.git"
},
"keywords": [
"actions",
"mwe",
"runner",
"issue",
"triaging",
"triage",
"labelling",
"label"
],
"author": "umarcor",
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/exec": "^1.0.4",
"@actions/github": "^5.0.0",
"@actions/io": "^1.0.2",
"@octokit/rest": "^18.12.0",
"ansi-colors": "^4.1.1",
"gfm-code-blocks": "^1.0.0"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.11.7",
"jest": "^27.3.1",
"jest-circus": "^27.3.1",
"ts-jest": "^27.0.7",
"ts-loader": "^9.2.6",
"typescript": "^4.4.3",
"webpack": "^5.64.0",
"webpack-cli": "^4.9.1"
}
}