forked from getsentry/action-github-app-token
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.74 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
69
70
71
{
"name": "action-github-app-token",
"version": "1.0.0",
"description": "Gets a GitHub auth token for a GitHub App installation",
"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": "yarn jest --passWithNoTests",
"all": "yarn build && yarn format && yarn lint && yarn test && yarn dist"
},
"repository": {
"type": "git",
"url": "[email protected]:getsentry/action-github-app-token.git"
},
"keywords": [
"actions",
"github app",
"github auth",
"github token",
"github action"
],
"author": "Sentry",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"yarn eslint --fix",
"yarn prettier --write"
]
},
"prettier": {
"bracketSpacing": false,
"singleQuote": true
},
"resolutions": {
"lodash": "^4.17.19",
"node-fetch": "^2.6.1"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@octokit/auth-app": "^6.0.3",
"@octokit/rest": "^20.0.2"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^12.7.12",
"@typescript-eslint/parser": "^4.30.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^7.32.0",
"eslint-config-sentry": "^1.60.0",
"eslint-plugin-github": "^4.2.0",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-prettier": "^3.4.1",
"husky": "^4.3.8",
"jest": "^27.1.0",
"jest-circus": "^27.1.0",
"js-yaml": "^4.1.0",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"ts-jest": "^27.0.5",
"typescript": "^4.4.2"
}
}