forked from jonschlinkert/remote-origin-url
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.49 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
{
"name": "remote-origin-url",
"description": "Get the git remote origin URL from your local git repository. Remember! A remote origin must exist first!",
"version": "2.0.0",
"homepage": "https://github.com/jonschlinkert/remote-origin-url",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"contributors": [
"Brian Woodward (https://twitter.com/doowb)",
"Jon Schlinkert (http://twitter.com/jonschlinkert)"
],
"repository": "jonschlinkert/remote-origin-url",
"bugs": {
"url": "https://github.com/jonschlinkert/remote-origin-url/issues"
},
"license": "MIT",
"files": [
"index.js"
],
"main": "index.js",
"engines": {
"node": ">=8"
},
"scripts": {
"test": "mocha"
},
"dependencies": {
"parse-git-config": "^3.0.0"
},
"devDependencies": {
"delete": "^1.1.0",
"gitty": "^3.6.0",
"gulp-format-md": "^2.0.0",
"mocha": "^5.2.0"
},
"keywords": [
"git",
"git remote",
"git remote origin",
"node",
"node.js",
"origin",
"remote",
"remote origin",
"remote origin url",
"url"
],
"verb": {
"run": true,
"toc": false,
"layout": "default",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"related": {
"list": [
"git-config-path",
"git-user-name",
"git-username",
"is-git-url",
"parse-github-url"
]
},
"reflinks": [
"verb"
],
"lint": {
"reflinks": true
}
}
}