-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
81 lines (81 loc) · 1.72 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
74
75
76
77
78
79
80
81
{
"name": "parse-url",
"version": "9.2.0",
"description": "An advanced url parser supporting git urls too.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./index.d.ts",
"exports": {
"require": {
"types": "./index.d.ts",
"default": "./dist/index.js"
},
"import": {
"types": "./index.d.mts",
"default": "./dist/index.mjs"
}
},
"directories": {
"example": "example",
"test": "test"
},
"scripts": {
"test": "node test/index.mjs && tsd",
"build": "pkgroll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IonicaBizau/parse-url.git"
},
"keywords": [
"parse",
"url",
"node",
"git",
"advanced"
],
"author": "Ionică Bizău <[email protected]> (https://ionicabizau.net)",
"license": "MIT",
"bugs": {
"url": "https://github.com/IonicaBizau/parse-url/issues"
},
"homepage": "https://github.com/IonicaBizau/parse-url",
"devDependencies": {
"normalize-url": "^7.0.3",
"pkgroll": "^1.11.1",
"tester": "^1.3.1",
"tsd": "^0.24.1"
},
"dependencies": {
"@types/parse-path": "^7.0.0",
"parse-path": "^7.0.0"
},
"files": [
"bin/",
"app/",
"lib/",
"dist/",
"src/",
"scripts/",
"resources/",
"menu/",
"cli.js",
"index.js",
"index.d.ts",
"index.d.mts",
"bloggify.js",
"bloggify.json",
"bloggify/"
],
"engines": {
"node": ">=14.13.0"
},
"blah": {
"description": [
"For low-level path parsing, check out [`parse-path`](https://github.com/IonicaBizau/parse-path). This very module is designed to parse urls. By default the urls are normalized."
]
},
"tsd": {
"directory": "test"
}
}