-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 757 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 757 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
32
33
34
35
36
{
"name": "gbruce",
"description": "gitBruce CLI for Bruce Web team",
"author": "Hedi Kochad",
"version": "1.3.0",
"source": "./src/index.ts",
"main": "./app/index.js",
"bin": "./app/index.js",
"type": "module",
"keywords": [
"git",
"bruce",
"bruce.work",
"cli"
],
"dependencies": {
"chalk": "^5.0.0",
"inquirer": "^8.2.0",
"minimist": "^1.2.5",
"simple-git": "^3.1.1"
},
"devDependencies": {
"@types/inquirer": "^8.2.0",
"@types/minimist": "^1.2.2",
"typescript": "^4.5.5"
},
"repository": {
"type": "git",
"url": "https://github.com/Slowl/bruce-git-cli"
},
"scripts": {
"build": "tsc --build --verbose",
"start": "node ./app/index.js"
},
"license": "ISC"
}