-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 897 Bytes
/
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
{
"name": "git-interactive",
"version": "1.0.1",
"description": "An interactive git terminal utility",
"main": "./dist/index.js",
"repository": "git@github.com:TJMcCarthy95/git-interactive.git",
"author": "Taylor McCarthy",
"license": "MIT",
"keywords": [
"git",
"git-interactive"
],
"engines": {
"node": ">=7.6.0"
},
"devDependencies": {
"@types/node": "^13.13.5",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"prettier": "2.0.5",
"typescript": "^3.8.3"
},
"dependencies": {
"prompts": "^2.3.2"
},
"scripts": {
"build": "tsc",
"start": "node ./dist",
"gc": "node ./dist/checkout",
"gr": "node ./dist/delete",
"gl": "node ./dist/log",
"gm": "node ./dist/merge"
},
"bin": {
"gi": "./dist/index.js",
"git-interactive": "./dist/index.js"
}
}