-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
52 lines (52 loc) · 1.69 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
52
{
"name": "eslint-annotate-action",
"version": "3.0.0",
"description": "A GitHub action that takes ESLint results from a JSON file and adds them as annotated pull request comments",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"build": "ncc build src/index.ts",
"prestart": "npm run build",
"start": "node dist/index.js",
"test": "GITHUB_ACTION=1 INPUT_GITHUB_TOKEN='secret123' jest",
"lint": "eslint --ext .ts src",
"lint:fix": "eslint --fix --ext .ts src",
"lint:report": "eslint --ext .ts --output-file eslint_report.json --format json src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ataylorme/eslint-annotate-action.git"
},
"keywords": [],
"author": "Andrew Taylor <ataylorme@users.noreply.github.com>",
"bugs": {
"url": "https://github.com/ataylorme/eslint-annotate-action/issues"
},
"homepage": "https://github.com/ataylorme/eslint-annotate-action#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@actions/glob": "^0.4.0",
"@octokit/action": "^6.0.7",
"dotenv": "^16.4.5"
},
"devDependencies": {
"@octokit/webhooks-definitions": "^3.67.0",
"@types/eslint": "^8.56.5",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29",
"js-yaml": "^4.1.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}