This repository has been archived by the owner on Feb 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 1.75 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
{
"name": "git-assist",
"version": "1.2.18",
"description": "node utility to help working with GitHub",
"main": "index.js",
"bin": {
"git-assist": "index.js"
},
"scripts": {
"postinstall": "bash src/utils/create-logs/create-logs.sh && node src/utils/welcome/welcome.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "standard --fix",
"add-function": "node tools/add-function/add-function.js"
},
"standard": {
"globals": [
"appRoot",
"clog"
]
},
"kaskadi": {
"s3-push": {
"files": [
{
"src": "easy-use/easy-use.zip",
"dest": "alexis/@git-assist/{branch}easy-use.zip"
},
{
"src": "easy-use/easy-use_Linux.zip",
"dest": "alexis/@git-assist/{branch}easy-use_Linux.zip"
},
{
"src": "easy-use/easy-use_Mac.zip",
"dest": "alexis/@git-assist/{branch}easy-use_Mac.zip"
}
]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexlemaire/git-assist.git"
},
"bugs": {
"url": "https://github.com/alexlemaire/git-assist/issues"
},
"homepage": "https://github.com/alexlemaire/git-assist#readme",
"keywords": [
"git",
"github",
"cli",
"auto",
"pull",
"push",
"clone",
"commit",
"stage",
"ssh",
"gpg"
],
"author": "Alexis Lemaire (a.lemaire94@gmail.com)",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.0",
"conf": "^7.1.2",
"inquirer": "^7.3.3",
"inquirer-fuzzy-path": "^2.3.0",
"isomorphic-git": "^1.8.1",
"keytar": "^6.0.1",
"pm2": "^4.5.5",
"strip-ansi": "^6.0.0",
"tail": "^2.2.0",
"winston": "^3.3.3"
},
"devDependencies": {
"standard": "^14.3.4"
}
}