-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 742 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 742 Bytes
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
{
"name": "git-init",
"version": "1.0.0",
"description": "A command line program to create both a remote and local git repository",
"main": "index.js",
"scripts": {
"start": "node index.js"
},
"keywords": [
"Git",
"CLI"
],
"author": "Sean Murphy",
"license": "MIT",
"dependencies": {
"@octokit/auth-token": "^2.5.0",
"@octokit/request": "^5.6.3",
"@octokit/rest": "^18.12.0",
"chalk": "^5.0.1",
"clear": "^0.1.0",
"clui": "^0.3.6",
"configstore": "^6.0.0",
"figlet": "^1.5.2",
"inquirer": "^8.2.2",
"lodash": "^4.17.21",
"request": "^2.88.2",
"simple-git": "^3.5.0",
"touch": "^3.1.0"
},
"type": "module",
"bin": {
"git-init": "./index.js"
}
}