forked from cuichenli/enforce-codeowner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 916 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 916 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
34
35
36
37
{
"name": "enforce-codeowner",
"version": "1.3.1",
"private": true,
"main": "lib/main.js",
"license": "MIT",
"scripts": {
"build": "ncc build src/main.ts",
"lint": "eslint src --ext .ts --fix --ignore-path .gitignore",
"test": "jest"
},
"engines": {
"node": ">=24"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"ignore": "^7.0.5"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^25.6.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vercel/ncc": "^0.38.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.7.0",
"jest-mock": "^29.7.0",
"nock": "^13.5.1",
"prettier": "^2.8.8",
"ts-jest": "^29.4.9",
"ts-loader": "^9.5.7",
"typescript": "^5.9.3"
}
}