-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
57 lines (57 loc) · 1.47 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
{
"name": "github-app-authentication-action",
"version": "1.0.0",
"description": "Get temporary GitHub API credentials inside GitHub Actions using a GitHub App",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.js",
"test": "jest --coverage",
"test-non-stop": "jest --watchAll",
"lint": "eslint --fix 'src/**.js' 'test/**.js'",
"prepare": "husky install"
},
"keywords": [
"action",
"github",
"authentication"
],
"repository": {
"type": "git",
"url": "git+https://github.com/volkswagen/github-app-authentication-action"
},
"author": "Lars Gohr <elgohr@oss.volkswagen.com>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@octokit/auth-app": "^7.1.3"
},
"devDependencies": {
"@vercel/ncc": "^0.38.3",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^9.1.7",
"jest": "^29.7.0",
"prettier": "^3.3.3"
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"src/authenticate.js"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
}
}