Skip to main content
Module

x/urlcat/package.json

A URL builder library for JavaScript.
Latest
File
{ "name": "urlcat", "version": "3.1.0", "description": "A library for concatenating URL's.", "repository": { "type": "git", "url": "https://github.com/balazsbotond/urlcat.git" }, "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "exports": { ".": { "import": "./dist/index.mjs", "require": "./dist/index.js" }, "./package.json": "./package.json" }, "files": [ "dist" ], "scripts": { "clean": "shx rm -rf dist", "prebuild": "npm run clean", "build": "tsup", "test": "jest", "lint": "eslint . --ext .js,.jsx,.ts,.tsx", "coverage": "cat ./coverage/lcov.info | coveralls", "prepublish": "npm test && npm run build", "docs": "docsify serve docs --open" }, "keywords": [ "url", "uri", "build", "builder", "concat", "concatenate" ], "author": "Botond Balazs", "license": "MIT", "dependencies": { "qs": "^6.9.4" }, "devDependencies": { "@types/jest": "29.2.5", "@types/qs": "6.9.7", "@typescript-eslint/eslint-plugin": "5.48.1", "@typescript-eslint/parser": "5.48.1", "coveralls": "3.1.1", "docsify-cli": "^4.4.4", "eslint": "8.32.0", "jest": "29.3.1", "shx": "0.3.4", "ts-jest": "29.0.5", "tslint": "6.1.3", "tsup": "^6.5.0", "typescript": "4.9.4" }}