-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
48 lines (48 loc) · 1.3 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
{
"name": "action-eslint",
"version": "3.0.1",
"description": "GitHub Action that runs ESLint for files changed in a Pull Request",
"author": "sibiraj-s",
"license": "MIT",
"private": "true",
"repository": "https://github.com/sibiraj-s/action-eslint.git",
"bugs": "https://github.com/sibiraj-s/action-eslint/issues",
"homepage": "https://github.com/sibiraj-s/action-eslint#readme",
"main": "lib/main.js",
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"keywords": [
"eslint",
"github-action",
"action-eslint",
"lint-changed-files",
"ci"
],
"scripts": {
"lint": "eslint . --ext js,ts --ignore-path .gitignore",
"build": "tsc",
"package": "ncc build --source-map --license licenses.txt",
"prepare": "is-ci || husky install"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1"
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@octokit/types": "^11.1.0",
"@types/node": "^18.17.3",
"@vercel/ncc": "^0.36.1",
"commitlint-config-non-conventional": "^1.0.1",
"eslint": "^8.46.0",
"eslint-config-pegasus": "^5.0.0",
"husky": "^8.0.3",
"ignore": "^5.2.4",
"is-ci": "^3.0.1",
"lint-staged": "^13.2.3",
"typescript": "^5.1.6"
}
}