-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 952 Bytes
/
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
{
"name": "commenter",
"version": "0.0.0",
"description": "Comments on pull requests by files altered",
"main": "lib/main.js",
"scripts": {
"build": "tsc && ncc build lib/main.js",
"format": "prettier --write \"**/*.ts\"",
"format-check": "prettier --check \"**/*.ts\"",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/freckle/commenter-action.git"
},
"author": "Freckle",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"js-yaml": "^4.1.0",
"minimatch": "^10.0.1"
},
"devDependencies": {
"@octokit/plugin-rest-endpoint-methods": "^13.2.6",
"@types/jest": "^27.5.0",
"@types/js-yaml": "^4.0.9",
"@types/minimatch": "^5.1.2",
"@types/node": "^22.9.0",
"@vercel/ncc": "^0.38.2",
"jest": "^27.5.1",
"prettier": "^3.3.3",
"ts-jest": "^27.1.4",
"typescript": "^4.9.5"
}
}