-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
44 lines (44 loc) · 1.03 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
{
"name": "todo-issue",
"version": "1.0.0",
"description": "",
"main": "lib/Entry.js",
"repository": "https://github.com/DerJuulsn/todo-issue.git",
"scripts": {
"test": "npm run build && jest",
"build": "rm -rf lib && tsc",
"dev": "ts-node -r dotenv/config src/ActionMain.ts",
"release": "npm test && ncc build"
},
"keywords": [
"todo",
"github",
"issue",
"action",
"bot"
],
"author": "Julian Bildner",
"license": "ISC",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0",
"@babel/preset-typescript": "^7.16.7",
"@octokit/rest": "^18.12.0",
"@vercel/ncc": "^0.33.1",
"action-input-parser": "^1.2.26",
"hbs": "^4.2.0",
"js-levenshtein": "^1.1.6",
"parse-diff": "^0.9.0",
"tkt": "^2.0.0-1"
},
"devDependencies": {
"@types/hbs": "^4.0.1",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.8",
"dotenv": "^12.0.4",
"jest": "^27.4.7",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}