UNPKG

@esm2cjs/normalize-url

Version:

Normalize a URL. This is a fork of sindresorhus/normalize-url, but with CommonJS support.

83 lines (82 loc) 1.33 kB
{ "name": "@esm2cjs/normalize-url", "version": "8.0.0", "description": "Normalize a URL. This is a fork of sindresorhus/normalize-url, but with CommonJS support.", "license": "MIT", "repository": "esm2cjs/normalize-url", "funding": "https://github.com/sponsors/AlCalzone", "author": { "name": "Dominic Griesel", "email": "d.griesel@gmx.net" }, "exports": { ".": { "import": "./esm/index.js", "require": "./cjs/index.js" }, "./package.json": "./package.json" }, "engines": { "node": ">=14.16" }, "scripts": { "test": "xo && c8 ava && tsd" }, "files": [ "cjs/", "esm/" ], "keywords": [ "normalize", "url", "uri", "address", "string", "normalization", "normalisation", "query", "querystring", "simplify", "strip", "trim", "canonical" ], "devDependencies": { "ava": "^5.0.1", "c8": "^7.12.0", "tsd": "^0.24.1", "xo": "^0.52.4" }, "c8": { "reporter": [ "text", "lcov" ] }, "publishConfig": { "access": "public" }, "main": "cjs/index.js", "module": "esm/index.js", "types": "esm/index.d.ts", "typesVersions": { "*": { "esm/index.d.ts": [ "esm/index.d.ts" ], "cjs/index.d.ts": [ "esm/index.d.ts" ], "*": [ "esm/*" ] } }, "xo": { "ignores": [ "cjs", "**/*.test-d.ts", "**/*.d.ts" ] } }