-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.55 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
{
"type": "module",
"name": "url-normalize",
"version": "2.1.1",
"license": "MIT",
"scripts": {
"build": "rm -rf dist && pkgroll --minify && ls -lah dist",
"test": "uvu -r tsm tests/",
"test-cov": "c8 --include=src yarn test",
"test-watch": "watchexec -e ts 'clear && yarn test'",
"bench": "node --loader tsm --no-warnings benchmark.ts",
"format": "prettier --write .",
"lint": "tsc --noEmit && prettier --check .",
"ci": "yarn lint && yarn test-cov && yarn build"
},
"dependencies": {
"@types/punycode": "2.1.4",
"punycode": "2.3.1"
},
"devDependencies": {
"c8": "10.1.2",
"pkgroll": "2.5.0",
"prettier": "3.3.3",
"prettier-plugin-organize-imports": "4.1.0",
"tsm": "2.3.0",
"typescript": "5.6.3",
"uvu": "0.5.6"
},
"author": "Vlad Pronsky <[email protected]>",
"repository": "vladkens/url-normalize",
"description": "Normalize URLs to a standardized form. HTTPS by default, flexible configuration, custom protocols, domain extraction, humazing URL, and punycode support. Both CJS & ESM modules available.",
"keywords": [
"canonical",
"domain",
"extract",
"humanization",
"humanize",
"normalization",
"normalize",
"punycode",
"querystrings",
"unicode",
"uri",
"url"
],
"files": [
"dist"
],
"types": "./dist/main.d.cts",
"exports": {
"require": {
"types": "./dist/main.d.cts",
"default": "./dist/main.cjs"
},
"import": {
"types": "./dist/main.d.mts",
"default": "./dist/main.mjs"
}
}
}