-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.32 KB
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
{
"name": "github-url-parser",
"version": "0.2.11",
"description": "Parse GitHub URLs, repository remotes, issues, pull requests, releases, commits, files, and workflow runs into normalized metadata.",
"type": "module",
"main": "./index.js",
"types": "./index.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.js",
"default": "./index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"test": "ava && tsd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlightSoulmate/github-url-parser.git"
},
"files": [
"index.js",
"index.d.ts",
"README.md",
"LICENSE"
],
"keywords": [
"parse",
"parser",
"github",
"github-url",
"url",
"git",
"repo",
"repository",
"issues",
"pull-request",
"actions",
"metadata",
"browser",
"json"
],
"author": "alightsoulmate",
"license": "MIT",
"engines": {
"node": "^22.22.2 || ^24.15.0 || >=26.0.0"
},
"bugs": {
"url": "https://github.com/AlightSoulmate/github-url-parser/issues"
},
"homepage": "https://github.com/AlightSoulmate/github-url-parser#readme",
"dependencies": {
"hosted-git-info": "^10.1.1"
},
"devDependencies": {
"ava": "^8.0.1",
"tsd": "^0.33.0"
}
}