-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.59 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
57
58
{
"name": "gh-actions-linter",
"private": false,
"version": "0.1.14",
"description": "Linting for GitHub Actions workflows",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/digitalservicebund/github-actions-linter.git"
},
"bugs": {
"url": "https://github.com/digitalservicebund/github-actions-linter/issues"
},
"homepage": "https://github.com/digitalservicebund/github-actions-linter",
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"lint:check": "eslint --max-warnings 0 .",
"lint:fix": "npm run lint:check -- --fix",
"format:check": "prettier --check .",
"format:fix": "prettier --write --ignore-unknown .",
"release": "release-it"
},
"type": "module",
"contributors": [
{
"name": "Pram Gurusinga",
"email": "[email protected]",
"url": "https://digitalservice.bund.de/"
},
{
"name": "Sebastian Bitterhof",
"email": "[email protected]",
"url": "https://digitalservice.bund.de/"
}
],
"bin": {
"github-actions-linter": "./cli.js"
},
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"glob": "^11.0.0",
"yamljs": "^0.3.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@eslint/compat": "^1.2.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.13.0",
"eslint": "^9.13.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.8.3",
"globals": "^15.11.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"release-it": "^17.6.0"
}
}