-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 860 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 860 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
{
"name": "@yasukotelin/git-ex",
"version": "1.3.0",
"description": "git-ex is git extensions tool",
"author": "yasukotelin (https://github.com/yasukotelin)",
"license": "MIT",
"repository": "yasukotelin/git-ex-js",
"bugs": {
"url": "https://github.com/yasukotelin/git-ex-js/issues"
},
"homepage": "https://github.com/yasukotelin/git-ex-js#readme",
"keywords": ["git", "cli", "tool", "terminal"],
"type": "module",
"scripts": {
"start": "node ./src/index.js",
"localInstall": "npm install -g ./",
"format": "prettier --write 'src/**/*.js'",
"checkPrettier": "prettier --check 'src/**/*.js'",
"uninstall": "npm uninstall -g git-ex"
},
"bin": {
"git-ex": "./src/index.js"
},
"devDependencies": {
"prettier": "^2.5.1"
},
"dependencies": {
"commander": "^8.3.0",
"prompts": "^2.4.2"
}
}