-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.34 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
{
"name": "actions-rate-limit-reporter",
"version": "3.0.0",
"description": "GitHub Action used to report on current rate-limit data as part of an Actions workflow",
"exports": "./src/index.js",
"scripts": {
"test": "./__test__/ci.sh",
"build": "npx tsc --noEmit && npx esbuild src/index.ts --bundle --outdir=dist --out-extension:.js=.cjs --platform=node --target=node20.0.0"
},
"engines": {
"npm": ">=8.0.0",
"node": ">=20.0.0"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/collinmcneese/actions-rate-limit-reporter.git"
},
"keywords": [
"github",
"webhook"
],
"author": "Collin McNeese <collinmcneese@github.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/collinmcneese/actions-rate-limit-reporter/issues"
},
"homepage": "https://github.com/collinmcneese/actions-rate-limit-reporter#readme",
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.1",
"chai": "^5.1.2",
"cspell": "^8.16.1",
"esbuild": "^0.24.0",
"eslint": "^9.16.0",
"fast-check": "^3.23.1",
"markdownlint-cli": "^0.43.0",
"mocha": "^10.8.2",
"typescript": "^5.7.2"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0"
}
}