-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 805 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 805 Bytes
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
{
"name": "issue-comment-action",
"version": "1.1.0",
"description": "Github action for github issue comments",
"keywords": [
"Actions",
"GitHub",
"JavaScript"
],
"homepage": "https://github.com/Amwam/issue-comment-action#readme",
"bugs": {
"url": "https://github.com/Amwam/issue-coment-action/issues"
},
"repository": "https://github.com/Amwam/issue-comment-action.git",
"license": "MIT",
"author": "Amit Shah <amit@amwam.me>",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"test": "jest"
},
"dependencies": {
"@actions/core": "^2.0.2",
"@actions/github": "^7.0.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.2.3",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
}
}