-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.12 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": "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 --maxWorkers 1",
"lint": "eslint",
"readme": "npx action-docs -u && prettier --write README.md"
},
"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.10.2",
"@vercel/ncc": "^0.38.3",
"action-docs": "^2.5.0",
"eslint": "^9.17.0",
"jest": "^27.5.1",
"prettier": "^3.4.2",
"ts-jest": "^27.1.4",
"typescript": "^4.9.5",
"typescript-eslint": "^8.18.1"
}
}