-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
51 lines (51 loc) · 1.39 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
42
43
44
45
46
47
48
49
50
51
{
"name": "eslint-action",
"version": "1.2.2",
"description": "eslint-action",
"main": "lib/eslint-action.js",
"packageManager": "[email protected]",
"scripts": {
"build": "rm -rf lib && ncc build src/eslint-action.ts -o lib",
"lint": "eslint --ext .ts src",
"test": "jest",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/a-b-r-o-w-n/eslint-action.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/a-b-r-o-w-n/eslint-action/issues"
},
"homepage": "https://github.com/a-b-r-o-w-n/eslint-action#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@octokit/rest": "^20.1.1",
"eslint": "^8.56.0",
"micromatch": "^4.0.7",
"node-fetch": "^3.3.2",
"tslib": "^2.0.3"
},
"devDependencies": {
"@octokit/types": "^13.5.0",
"@types/eslint": "^8.56.10",
"@types/jest": "^29.5.12",
"@types/micromatch": "^4.0.7",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"@vercel/ncc": "^0.38.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"prettier": "^3.3.0",
"pretty-quick": "^4.0.0",
"ts-jest": "^29.1.4",
"typescript": "^5.4.5"
}
}