-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.45 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
{
"name": "github-app-installation-token",
"version": "2.1.1",
"keywords": [
"github-actions",
"github",
"actions",
"authentication",
"github-application",
"token"
],
"repository": {
"url": "https://github.com/sammcj/github-app-installation-token"
},
"license": "MIT",
"author": "sammcj",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "npx @vercel/ncc build -m index.js --v8-cache",
"check-prettier": "npm run prettier --fix",
"clean-packages": "npx npm-check",
"lint": "eslint --ignore-path .gitignore --max-warnings 0 \"./**/*.{js,ts}\" --fix",
"format-prettier": "npm run prettier --write",
"prettier": "prettier --ignore-path .gitignore \"./**/*.{js,json,md,ts,yml}\"",
"test": "npm run build && mocha --recursive \"test/**/*.test.js\""
},
"dependencies": {
"@actions/core": "1.10.1",
"@actions/github": "6.0.0",
"env": "0.0.2",
"fn": "0.2.0",
"jsonwebtoken": "9.0.2"
},
"devDependencies": {
"@jest/globals": "29.7.0",
"@types/chai": "4.3.20",
"@types/jest": "29.5.14",
"@types/jsonwebtoken": "9.0.7",
"@types/sinon": "17.0.3",
"@vercel/ncc": "0.38.3",
"chai": "5.1.2",
"eslint": "9.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"esm": "3.2.25",
"jest": "29.7.0",
"mocha": "10.4.0",
"prettier": "3.2.5",
"sinon": "17.0.2"
}
}