-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
40 lines (40 loc) · 1.06 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
{
"name": "github-default-branch",
"version": "2.2.2",
"description": "Rename your default branch on GitHub",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "eslint bin/* data-sources/*.js replacements/*.js src/*.js transforms/*.js",
"lint-fix": "eslint --fix bin/* data-sources/*.js replacements/*.js src/*.js transforms/*.js"
},
"keywords": [
"github",
"default",
"branch",
"master",
"main",
"cli"
],
"author": "Michael Heap <[email protected]> (https://michaelheap.com)",
"license": "MIT",
"dependencies": {
"@octokit/plugin-enterprise-compatibility": "^1.2.9",
"@octokit/plugin-throttling": "^3.4.1",
"@octokit/rest": "^18.3.4",
"debug": "^4.1.1",
"prompt-confirm": "^2.0.4",
"string.prototype.replaceall": "^1.0.5",
"yargs": "^16.2.0"
},
"bin": {
"github-default-branch": "./bin/github-default-branch"
},
"devDependencies": {
"eslint": "^7.21.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.4.2",
"nock": "^13.0.10",
"prettier": "^2.1.2"
}
}