-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
85 lines (85 loc) · 1.93 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@stoe/action-reporting-cli",
"version": "3.6.0",
"type": "module",
"description": "CLI to report on GitHub Actions",
"keywords": [
"github-actions",
"reporting",
"cli"
],
"author": {
"name": "Stefan Stölzle",
"email": "stefan@github.com",
"url": "https://github.com/stoe"
},
"repository": "github:stoe/action-reporting-cli",
"license": "MIT",
"engines": {
"node": ">=20",
"npm": ">=10"
},
"bin": {
"action-reporting-cli": "./index.js"
},
"exports": {
".": "./utils/reporting.js",
"./utils": "./utils/reporting.js",
"./utils/*": "./utils/*.js",
"./package.json": "./package.json"
},
"files": [
"utils/",
"index.js",
"license",
"readme.md"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"format": "npx prettier --config-precedence prefer-file --write . && eslint . --fix",
"prepare": "husky",
"pretest": "npx eslint-config-prettier eslint.config.js",
"test": "eslint ."
},
"dependencies": {
"@octokit/core": "^6.1.2",
"@octokit/plugin-paginate-rest": "^11.3.3",
"@octokit/plugin-throttling": "^9.3.0",
"chalk": "^4.1.2, <6",
"csv": "^6.3.9",
"got": "^14.4.1",
"js-yaml": "^4.1.0",
"meow": "^13.2.0",
"normalize-url": "^8.0.1"
},
"devDependencies": {
"@github/prettier-config": "^0.0.6",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-markdown": "^5.0.0",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^15.8.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2"
},
"husky": {
"hooks": {
"pre-commit": ".husky/pre-commit",
"pre-push": ".husky/pre-push"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run format",
"npm run test"
],
"*.{json,md}": [
"prettier --write"
]
},
"prettier": "@github/prettier-config"
}