-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 1.23 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": "git-username",
"description": "Get the username (or 'owner' name) from a git/GitHub remote origin URL.",
"version": "1.0.0",
"homepage": "https://github.com/jonschlinkert/git-username",
"author": "Jon Schlinkert (http://github.com/https://github.com/jonschlinkert)",
"repository": "jonschlinkert/git-username",
"bugs": {
"url": "https://github.com/jonschlinkert/git-username/issues"
},
"license": "MIT",
"files": [
"index.js"
],
"main": "index.js",
"engines": {
"node": ">=0.8"
},
"scripts": {
"test": "mocha"
},
"dependencies": {
"parse-github-url": "^1.0.2",
"remote-origin-url": "^1.0.0"
},
"devDependencies": {
"gulp-format-md": "^1.0.0",
"mocha": "^3.5.3"
},
"keywords": [
"git",
"name",
"origin",
"parse",
"remote",
"remote origin",
"remote origin url",
"url",
"user",
"username"
],
"verb": {
"toc": false,
"layout": "default",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"lint": {
"reflinks": true
},
"related": {
"list": [
"git-branch",
"git-user-name",
"parse-git-config",
"remote-origin-url"
]
}
}
}