-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.06 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
{
"name": "oss-gate-issue-cleaner",
"description": "A GitHub Actions for cleaning issues of OSS Gate Workshop repository",
"version": "3.1.3",
"author": "OSS Gate",
"bugs": "https://github.com/oss-gate/issue-cleaner/issues",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/github": "^5.0.0",
"clsx": "^1.1.1",
"mustache": "^4.2.0",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/mustache": "^4.1.2",
"@types/node-fetch": "^2.5.12",
"jest": "^27.1.1",
"prettier": "^2.4.0",
"shipjs": "0.24.4",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
},
"engines": {
"node": ">= 12"
},
"homepage": "https://github.com/oss-gate/issue-cleaner",
"keywords": [
"github",
"github-actions"
],
"license": "ISC",
"main": "src/main.ts",
"repository": "https://github.com/oss-gate/issue-cleaner.git",
"scripts": {
"build": "tsc && cp src/message.mustache lib/",
"format": "prettier --write **/*.ts",
"test": "jest",
"release": "shipjs prepare"
}
}