forked from Krakaw/action-eslint
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.14 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-gihub-lint-action",
"version": "1.0.0",
"private": true,
"description": "GitHub Action to run ESLint",
"main": "dist/index.js",
"scripts": {
"build": "tsc ; ncc build lib/main.js --license license.txt",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/node12-template.git"
},
"keywords": [
"actions",
"node",
"eslint",
"github"
],
"author": "Konstantin Vyatkin <tino@vtkn.io>",
"license": "MIT",
"dependencies": {
"@actions/core": "1.2.4",
"@actions/github": "4.0.0",
"fast-glob": "^3.2.7"
},
"devDependencies": {
"@octokit/rest": "18.0.0",
"@types/eslint": "7.2.0",
"@types/jest": "26.0.3",
"@types/node": "12.12.31",
"@types/semver": "7.3.1",
"@vercel/ncc": "^0.31.1",
"eslint": "7.3.1",
"jest": "26.2.2",
"jest-circus": "26.2.2",
"ts-jest": "26.1.1",
"typescript": "3.9.6"
},
"eslintConfig": {
"env": {
"es6": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "script"
},
"extends": "eslint:recommended"
}
}