-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.11 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@jawang94/git.in",
"version": "1.1.3",
"description": "Quickly switch between and manage your git branches",
"repository": "https://github.com/jawang94/git.in",
"license": "None",
"author": {
"name": "Jason Wang",
"email": "[email protected]",
"url": "https://github.com/jawang94"
},
"contributors": [
{
"name": "Pete Cook",
"url": "https://github.com/cookpete"
}
],
"engines": {
"node": ">=14.17.0"
},
"files": [
"dist",
"bin"
],
"scripts": {
"build": "rm -rf dist/ && tsc",
"lint": "eslint src --quiet --ext .ts --cache",
"dev-gci": "ts-node src/gci.ts",
"dev-gdi": "ts-node src/gdi.ts"
},
"bin": {
"gci": "dist/src/gci.js",
"gdi": "dist/src/gdi.js",
"git.in-checkout": "dist/src/gci.js",
"git.in-delete": "dist/src/gdi.js"
},
"dependencies": {
"chalk": "^4.1.2",
"fs-extra": "^11.2.0",
"micromatch": "^4.0.4",
"nock": "^13.1.3",
"node-fetch": "^3.3.2",
"open": "^10.1.0",
"prompts": "^2.4.1",
"tmp": "^0.2.1",
"yargs": "^17.0.1"
},
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/chai": "^4.2.14",
"@types/chai-as-promised": "^7.1.4",
"@types/fs-extra": "^11.0.4",
"@types/micromatch": "^4.0.2",
"@types/mocha": "^10.0.7",
"@types/node": "^22.5.0",
"@types/prompts": "^2.0.14",
"@types/tmp": "^0.2.0",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^7",
"@typescript-eslint/parser": "^7",
"@yarnpkg/pnpify": "^4.1.1",
"chai": "^5.1.1",
"chai-as-promised": "^8.0.0",
"eslint": "^8",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-typescript-sort-keys": "^3.2.0",
"husky": "^9.1.5",
"mocha": "^10.7.3",
"prettier": "^3.3.3",
"ts-node": "^10.8.0",
"typescript": "^5.5.4"
},
"keywords": [
"git.in",
"git interactive",
"git",
"git checkout",
"git delete"
]
}