-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 993 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 993 Bytes
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
{
"name": "github-api-usage-tracker",
"private": false,
"author": "Really Him",
"license": "MIT",
"repository": "https://github.com/hesreallyhim/github-api-usage-tracker",
"type": "commonjs",
"scripts": {
"bundle": "rimraf dist && ncc build src/pre.js -o dist/pre && ncc build src/post.js -o dist/post && ncc build src/checkpoint.js -o dist/checkpoint",
"test:ci": "npm run lint && npm run format && npm test",
"lint": "eslint .",
"format": "prettier --check .",
"format:write": "prettier --write .",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"prepare": "husky"
},
"dependencies": {
"@actions/core": "2.0.2"
},
"devDependencies": {
"@eslint/js": "9.39.2",
"@vercel/ncc": "0.38.4",
"@vitest/coverage-v8": "4.0.18",
"eslint": "9.39.2",
"globals": "17.1.0",
"husky": "9.1.7",
"prettier": "3.8.1",
"rimraf": "6.1.2",
"vitest": "4.0.18"
},
"engines": {
"node": ">=20"
}
}