-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 813 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 813 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
{
"name": "diff-status-action",
"version": "1.0.0",
"description": "GitHub Action to validate changed files against glob patterns and update status checks",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/main.ts -o dist --source-map --license licenses.txt",
"test": "jest",
"lint": "eslint src/**/*.ts"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^5.1.1",
"minimatch": "^5.1.9"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/minimatch": "^5.1.2",
"@types/node": "^20.19.37",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"@vercel/ncc": "^0.38.4",
"eslint": "^8.57.1",
"jest": "^29.7.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
}
}