-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 802 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 802 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
{
"name": "@khattakdev/gitbot",
"version": "1.1.7",
"description": "A CLI Based Application to help you learn Git and GitHub.",
"main": "index.js",
"bin": {
"gitbot": "dist/index.js"
},
"scripts": {
"exec": "node ./dist/index.js",
"lint": "eslint . --ext .ts"
},
"author": "Arsalan Khattak",
"license": "MIT",
"devDependencies": {
"@types/cli-table": "^0.3.0",
"@types/node": "^14.14.14",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"eslint": "^7.17.0"
},
"dependencies": {
"chalk": "^4.1.0",
"cli-table": "^0.3.4"
},
"repository": {
"type": "git",
"url": "https://github.com/khattakdev/gitbot"
}
}