This repository has been archived by the owner on Oct 2, 2024. It is now read-only.
forked from MindaugasLaganeckas/get-default-branch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.37 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
{
"name": "get-default-branch",
"version": "0.0.1",
"private": true,
"description": "Get the default branch",
"main": "lib/main.js",
"scripts": {
"build": "tsc && ncc build",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MindaugasLaganeckas/get-branches.git"
},
"keywords": [
"default_branch"
],
"author": "Mindaugas Laganeckas",
"bugs": {
"url": "https://github.com/MindaugasLaganeckas/get-default-branch/issues"
},
"homepage": "https://github.com/MindaugasLaganeckas/get-default-branch",
"dependencies": {
"@actions/core": "1.2.6",
"@actions/exec": "1.0.4",
"@actions/github": "4.0.0",
"@octokit/core": "3.2.2",
"@octokit/plugin-paginate-rest": "2.6.0",
"@octokit/plugin-rest-endpoint-methods": "4.3.0",
"uuid": "8.3.1"
},
"devDependencies": {
"@types/jest": "26.0.15",
"@types/node": "14.14.10",
"@typescript-eslint/parser": "4.9.0",
"@vercel/ncc": "0.25.1",
"eslint": "7.14.0",
"eslint-plugin-github": "4.1.1",
"eslint-plugin-jest": "24.1.3",
"eslint-plugin-prettier": "^3.1.4",
"jest": "26.6.3",
"jest-circus": "26.6.3",
"js-yaml": "3.14.0",
"prettier": "2.2.1",
"ts-jest": "26.4.4",
"typescript": "4.1.2"
}
}