-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.29 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
{
"name": "issue-metadata",
"version": "0.2.3",
"description": "A NodeJS module to store metadata on GitHub Issues and Pull Requests.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"scripts": {
"build": "esbuild ./src/index.js --bundle --outdir=dist --platform=node --target=node20.0.0 --packages=bundle",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"test": "vitest run --coverage",
"update-snapshots": "vitest run --update",
"all": "yarn run build && yarn run format && yarn test"
},
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/redhat-plumbers-in-action/issue-metadata.git"
},
"keywords": [
"github"
],
"author": "Jan Macku <[email protected]>",
"license": "GPLv3",
"bugs": {
"url": "https://github.com/redhat-plumbers-in-action/issue-metadata/issues"
},
"homepage": "https://github.com/redhat-plumbers-in-action/issue-metadata#readme",
"dependencies": {
"@octokit/request": "^9.1.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.1.0",
"@vitest/coverage-v8": "^2.0.5",
"esbuild": "^0.24.0",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
}
}