-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 882 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
40
41
{
"name": "git-suite",
"version": "0.8.0",
"description": "npm package to simplify git commit flow",
"main": "src/index.js",
"type": "module",
"scripts": {
"test": "node ./src/index.js"
},
"bin": {
"gs": "src/index.js"
},
"dependencies": {
"chalk": "5.0.1"
},
"engines": {
"node": ">=16.14.2",
"npm": ">=7.0.0"
},
"devDependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/LucasGobatto/git-suite.git"
},
"keywords": [
"git",
"gitflow",
"cli"
],
"author": "LucasGobatto",
"license": "ISC",
"bugs": {
"url": "https://github.com/LucasGobatto/git-suite/issues"
},
"homepage": "https://github.com/LucasGobatto/git-suite#readme",
"imports": {
"#log": "./src/log/log.js",
"#utils/*": "./src/scripts/utils/*.js",
"#tasks": "./src/scripts/tasks/index.js"
}
}