-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
68 lines (68 loc) · 1.76 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "octokit-auth-probot",
"version": "0.0.0-development",
"type": "module",
"description": "Octokit authentication strategy that supports token, app (JWT), and event-based installation authentication",
"main": "index.js",
"scripts": {
"build": "node scripts/build.mjs && tsc -p tsconfig.json",
"lint": "prettier --check '{src,test}/**/*.{ts,md}' *.md *.json",
"lint:fix": "prettier --write '{src,test}/**/*.{ts,md}' *.md *.json",
"pretest": "npm run -s lint",
"test": "vitest --ui --coverage"
},
"repository": "github:probot/octokit-auth-probot",
"keywords": [
"octokit-authentication-strategy"
],
"author": "Gregor Martynus (https://twitter.com/gr2m)",
"license": "ISC",
"dependencies": {
"@octokit/auth-app": "^7.1.3",
"@octokit/auth-token": "^5.0.0",
"@octokit/auth-unauthenticated": "^6.0.0",
"@octokit/types": "^13.0.0"
},
"peerDependencies": {
"@octokit/core": ">=6"
},
"devDependencies": {
"@octokit/core": "^6.0.0",
"@octokit/tsconfig": "^3.0.0",
"@types/fetch-mock": "^7.3.7",
"@types/node": "^18.18.6",
"@vitest/coverage-v8": "^2.0.0",
"@vitest/ui": "^2.0.0",
"esbuild": "^0.24.0",
"fetch-mock": "^11.0.0",
"glob": "^10.3.10",
"mockdate": "^3.0.2",
"prettier": "^3.0.3",
"typescript": "^5.2.2",
"vitest": "^2.0.0"
},
"release": {
"branches": [
"+([0-9]).x",
"main",
{
"name": "beta",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
[
"@semantic-release/npm",
{
"pkgRoot": "./pkg"
}
]
]
},
"engines": {
"node": ">=18"
}
}