-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1020 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
42
43
44
45
{
"name": "git-alias-manager",
"version": "1.3.0",
"description": "GAM (Git Alias Manager) is a NodeJS application for managing multiple Git accounts (aliases).",
"main": "./src/methods.js",
"scripts": {
"test": "node -e 'require(\"./tests/test.js\").run()'",
"start": "node ./src/manager.js"
},
"author": "Seth Wheeler",
"license": "Apache-2.0",
"dependencies": {
"inquirer": "^7.1.0"
},
"bin": {
"gam": "./src/manager.js"
},
"devDependencies": {
"eslint": "^8.28.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Megapixel99/GAM.git"
},
"keywords": [
"git",
"alias",
"manager",
"git-alias-manager",
"gam",
"cli",
"command",
"args",
"terminal",
"console",
"api",
"shell"
],
"bugs": {
"url": "https://github.com/Megapixel99/GAM/issues"
},
"homepage": "https://github.com/Megapixel99/GAM#readme"
}