-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
54 lines (54 loc) · 1.03 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
51
52
53
54
{
"name": "git-jump",
"version": "0.3.1",
"description": "Git Branches Helper",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"prepublishOnly": "npm run build",
"release": "cat ./how-to-release.md"
},
"bin": {
"git-jump": "./exec/git-jump"
},
"man": [
"./git-jump.1"
],
"files": [
"exec",
"dist",
"!dist/*.map",
"git-jump.1",
"help.txt"
],
"author": {
"name": "Mykola Harmash",
"email": "[email protected]",
"url": "https://stse.io"
},
"repository": {
"type": "git",
"url": "[email protected]:mykolaharmash/git-jump.git"
},
"homepage": "https://github.com/mykolaharmash/git-jump",
"bugs": "https://github.com/mykolaharmash/git-jump/issues",
"license": "MIT",
"devDependencies": {
"@types/node": "^14.0.23",
"typescript": "^3.9.6"
},
"engines": {
"node": ">=12.12.0",
"npm": ">=6.14.5"
},
"keywords": [
"git",
"cli",
"tool",
"branch",
"branches",
"switch",
"addon",
"add-on"
]
}