forked from ataylorme/eslint-annotate-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.54 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
{
"name": "eslint-annotate-action",
"version": "2.2.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": "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 <[email protected]>",
"bugs": {
"url": "https://github.com/ataylorme/eslint-annotate-action/issues"
},
"homepage": "https://github.com/ataylorme/eslint-annotate-action#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/glob": "^0.4.0",
"actions-toolkit": "^6.0.1",
"dotenv": "^16.0.3"
},
"devDependencies": {
"@octokit/webhooks-definitions": "^3.67.0",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.5",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29",
"js-yaml": "^4.1.0",
"prettier": "^2.8.6",
"ts-jest": "^29.0.5",
"typescript": "^5.0.2"
}
}