forked from ataylorme/eslint-annotate-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.34 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
{
"name": "eslint-annotate-action",
"version": "1.2.1",
"description": "A GitHub action that takes ESLint results from a JSON file and adds them as annotated pull request comments",
"main": "index.js",
"scripts": {
"build": "tsc",
"postbuild": "ncc build lib/eslint-action.js",
"test": "jest",
"lint": "eslint --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.2.0",
"@actions/github": "^1.1.0"
},
"devDependencies": {
"@types/eslint": "^6.1.3",
"@types/jest": "^24.9.1",
"@types/node": "^13.5.0",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"@zeit/ncc": "^0.20.5",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^25.1.0",
"prettier": "^1.18.2",
"ts-jest": "^25.0.0",
"typescript": "^3.7.2"
}
}