forked from a-b-r-o-w-n/eslint-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.46 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
53
54
55
56
{
"name": "eslint-action",
"version": "1.2.2",
"description": "eslint-action",
"main": "lib/eslint-action.js",
"scripts": {
"build": "rm -rf lib && ncc build src/eslint-action.ts -o lib",
"lint": "eslint --ext .ts src",
"test": "jest"
},
"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.2.6",
"@actions/github": "^4.0.0",
"@octokit/rest": "^18.0.9",
"eslint": "^7.13.0",
"kind-of": "^6.0.3",
"micromatch": "^4.0.2",
"minimist": "^1.2.5",
"tslib": "^2.0.3"
},
"devDependencies": {
"@octokit/types": "^5.5.0",
"@types/eslint": "^7.2.5",
"@types/jest": "^26.0.15",
"@types/micromatch": "^4.0.1",
"@types/minimatch": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"@vercel/ncc": "^0.25.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"jest": "^26.6.3",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}