UNPKG

874 BJSONView Raw
1{
2 "name": "normalize-url",
3 "version": "7.0.2",
4 "description": "Normalize a URL",
5 "license": "MIT",
6 "repository": "sindresorhus/normalize-url",
7 "funding": "https://github.com/sponsors/sindresorhus",
8 "author": {
9 "name": "Sindre Sorhus",
10 "email": "sindresorhus@gmail.com",
11 "url": "https://sindresorhus.com"
12 },
13 "type": "module",
14 "exports": "./index.js",
15 "engines": {
16 "node": ">=12.20"
17 },
18 "scripts": {
19 "test": "xo && c8 ava && tsd"
20 },
21 "files": [
22 "index.js",
23 "index.d.ts"
24 ],
25 "keywords": [
26 "normalize",
27 "url",
28 "uri",
29 "address",
30 "string",
31 "normalization",
32 "normalisation",
33 "query",
34 "querystring",
35 "simplify",
36 "strip",
37 "trim",
38 "canonical"
39 ],
40 "devDependencies": {
41 "ava": "^3.15.0",
42 "c8": "^7.7.3",
43 "tsd": "^0.17.0",
44 "typescript": "^4.3.5",
45 "xo": "^0.41.0"
46 },
47 "c8": {
48 "reporter": [
49 "text",
50 "lcov"
51 ]
52 }
53}