UNPKG

urlbat

Version:

A library to join all parts of a url

52 lines (51 loc) 1.29 kB
{ "name": "urlbat", "version": "5.0.0", "description": "A library to join all parts of a url", "type": "module", "main": "./dist/index.cjs", "types": "./dist/index.d.ts", "module": "./dist/index.js", "exports": { "import": "./dist/index.js", "require": "./dist/index.cjs", "default": "./dist/index.cjs" }, "scripts": { "prettier": "prettier --write src", "lint": "eslint ./src -c ./.eslintrc.cjs", "build": "tsup", "prepublishOnly": "npm run test && npm run build && npm run lint", "test": "jest" }, "files": [ "dist" ], "repository": { "type": "git", "url": "https://github.com/Tronikelis/urlbat.git" }, "keywords": [ "url", "uri", "build", "builder", "concat", "concatenate", "urlcat" ], "author": "Tronikelis", "license": "MIT", "devDependencies": { "@types/jest": "29.5.3", "@types/node": "18.17.3", "eslint": "8.46.0", "eslint-config-tronikelis": "1.0.2", "jest": "29.6.2", "prettier": "3.0.1", "ts-jest": "29.1.1", "ts-node": "10.9.1", "tsup": "7.2.0", "typescript": "5.1.6" } }