-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.02 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
{
"name": "eslint-plugin-actions",
"version": "0.0.0-development",
"description": "Lint JS inside GitHub Actions workflow",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"github-actions",
"github-script"
],
"scripts": {
"build": "tsc",
"prepack": "yarn build",
"test:lint": "eslint --max-warnings 0 \"src/**/*.@(ts|js)\"",
"semantic-release": "semantic-release"
},
"author": "ylemkimon",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/ylemkimon/eslint-plugin-actions.git"
},
"dependencies": {
"yaml": "^1.10.2"
},
"devDependencies": {
"@types/eslint": "^7.28.2",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"eslint": "^8.1.0",
"semantic-release": "^18.0.0",
"typescript": "^4.4.4"
},
"peerDependencies": {
"eslint": "^8.0.0"
},
"files": [
"/lib/**/*"
],
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"license": "MIT"
}