-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 742 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 742 Bytes
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
{
"name": "shorten-repo-url",
"version": "1.5.0",
"description": "Shorten GitHub URLs like GitHub shortens Issues and Commit URLs",
"license": "MIT",
"repository": "bfred-it/shorten-repo-url",
"author": "Federico Brigante <github@bfred.it> (bfred.it)",
"keywords": [
"github",
"gitlab",
"shorter",
"reference",
"ref",
"issue",
"commit",
"file",
"url",
"links",
"link"
],
"files": [
"index.js",
"browser-url.js"
],
"scripts": {
"test": "xo && ava"
},
"devDependencies": {
"ava": "*",
"xo": "*"
},
"engines": {
"node" : ">=7.0.0"
},
"browser": {
"url": "./browser-url"
},
"dependencies": {
"github-reserved-names": "^1.0.3"
}
}