-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.2 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
{
"name": "get-app-token",
"version": "1.0.4",
"description": "This GitHub Action retrieves a GitHub App installation token for use in workflows",
"main": "lib/index.js",
"scripts": {
"format": "prettier --write **/*.ts",
"test": "jest --passWithNoTests",
"build": "tsc",
"package": "ncc build --source-map --license licenses.txt",
"all": "npm run format && npm run build && npm run test && npm run package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/microsoftgraph/get-app-token.git"
},
"keywords": [],
"author": "jasonjoh",
"license": "MIT",
"bugs": {
"url": "https://github.com/microsoftgraph/get-app-token/issues"
},
"homepage": "https://github.com/microsoftgraph/get-app-token#readme",
"prettier": {
"endOfLine": "auto",
"singleQuote": true
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"jsonwebtoken": "^9.0.2"
},
"devDependencies": {
"@octokit/types": "^13.8.0",
"@types/jsonwebtoken": "^9.0.8",
"@types/node": "^20.14.11",
"@vercel/ncc": "^0.38.3",
"jest": "^29.7.0",
"prettier": "^3.5.1",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3"
}
}