-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.64 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.64 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
{
"name": "action-github-app-token",
"version": "4.0.0",
"description": "Gets a GitHub auth token for a GitHub App installation",
"type": "module",
"main": "lib/main.js",
"scripts": {
"build": "yarn tsc",
"format": "yarn prettier --write **/*.ts",
"format-check": "yarn prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"dist": "yarn build && yarn ncc build",
"test": "NODE_OPTIONS='--experimental-vm-modules' yarn jest --passWithNoTests",
"all": "yarn build && yarn format && yarn lint && yarn test && yarn dist"
},
"repository": {
"type": "git",
"url": "git@github.com:getsentry/action-github-app-token.git"
},
"author": "Sentry",
"license": "MIT",
"prettier": {
"bracketSpacing": false,
"singleQuote": true
},
"jest": {
"clearMocks": true,
"testMatch": [
"**/*.test.ts"
],
"extensionsToTreatAsEsm": [".ts"],
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"transform": {
"^.+\\.ts$": [
"ts-jest",
{
"useESM": true,
"diagnostics": {"ignoreCodes": [151002]}
}
]
}
},
"dependencies": {
"@actions/core": "^3.0.0",
"@octokit/auth-app": "^8.2.0",
"@octokit/rest": "^22.0.1"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.0.0",
"@vercel/ncc": "^0.38.4",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-jest": "^29.15.0",
"eslint-plugin-prettier": "^5.5.5",
"jest": "^30.3.0",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1"
}
}