-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.34 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.34 KB
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
86
87
88
89
90
91
92
93
94
{
"name": "@stoe/action-reporting-cli",
"version": "4.3.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": ">=22",
"npm": ">=11"
},
"bin": {
"action-reporting-cli": "./cli.js"
},
"exports": {
".": "./src/report/report.js",
"./report": "./src/report/report.js",
"./report/*": "./src/report/*.js",
"./github": "./src/github/base.js",
"./github/*": "./src/github/*.js",
"./util": "./src/util/log.js",
"./util/*": "./src/util/*.js",
"./package.json": "./package.json"
},
"files": [
"src/",
"cli.js",
"license",
"readme.md"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"format": "npx prettier --config-precedence prefer-file --write . && eslint -c eslint.config.js . --fix",
"prepare": "husky",
"pretest": "eslint -c eslint.config.js .",
"test": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:watch": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js --watch"
},
"dependencies": {
"@octokit/core": "^7.0.6",
"@octokit/plugin-paginate-rest": "^14.0.0",
"@octokit/plugin-throttling": "^11.0.3",
"chalk": "^4.1.2, <6",
"csv": "^6.5.1",
"got": "^15.0.3",
"js-yaml": "^4.1.1",
"meow": "^14.1.0",
"normalize-url": "^9.0.0",
"ora": "^9.4.0",
"winston": "^3.19.0"
},
"devDependencies": {
"@eslint/markdown": "^8.0.1",
"@github/prettier-config": "^0.0.6",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.6.0",
"husky": "^9.1.7",
"jest": "^30.3.0",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"sinon": "^21.1.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}": [
"npm run format"
]
},
"prettier": "@github/prettier-config"
}