-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.15 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
{
"name": "github-push-global",
"main": "index.js",
"bin": {
"github-push-global": "index.js"
},
"preferGlobal": true,
"version": "1.1.1",
"description": "Commit in all repositories with a command",
"author": {
"email": "TiagoDanin@outlook.com",
"name": "Tiago Danin",
"url": "https://TiagoDanin.github.io"
},
"license": "MIT",
"keywords": [
"git",
"github",
"github-app",
"github-tools",
"global",
"push"
],
"scripts": {
"start": "node index.js",
"test": "xo"
},
"engines": {
"node": ">=8"
},
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/TiagoDanin/GitHub-Push-Global.git"
},
"homepage": "https://TiagoDanin.github.io/GitHub-Push-Global",
"bugs": {
"url": "https://github.com/TiagoDanin/GitHub-Push-Global/issues"
},
"github": {
"name": "GitHub-Push-Global",
"owner": "TiagoDanin"
},
"files": [
"LICENSE",
"README.md",
"index.js",
"package.json"
],
"dependencies": {
"@octokit/rest": "18.0.6",
"axios": "^0.20.0",
"js-yaml": "3.14.0",
"meow": "^6.1.1",
"update-notifier": "^4.1.1"
},
"devDependencies": {
"xo": "^0.33.1"
},
"xo": {
"semicolon": false
}
}