mirror of
https://github.com/dzeiocom/libs.git
synced 2025-04-22 19:02:14 +00:00
39 lines
963 B
JSON
39 lines
963 B
JSON
{
|
|
"name": "@dzeio/url-manager",
|
|
"version": "1.0.9",
|
|
"description": "A simple to use yet complete Urls parser and serializer",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/dzeiocom/libs.git",
|
|
"directory": "packages/url-manager"
|
|
},
|
|
"homepage": "https://github.com/dzeiocom/libs/tree/master/packages/url-manager#readme",
|
|
"author": "Aviortheking",
|
|
"license": "MIT",
|
|
"main": "./dist/cjs/URLManager.js",
|
|
"module": "./dist/esm/URLManager.js",
|
|
"types": "./dist/types/URLManager.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"keywords": [
|
|
"url",
|
|
"url-manager",
|
|
"url serializer",
|
|
"url parser",
|
|
"parser",
|
|
"serializer"
|
|
],
|
|
"devDependencies": {
|
|
"esbuild": "^0.13.2"
|
|
},
|
|
"scripts": {
|
|
"prepublishOnly": "npm run build",
|
|
"build": "esbuild src/index.ts --bundle --outfile=dist/browser.js --minify --target=es6 && tsc && tsc --project tsconfig.esm.json",
|
|
"test": "jest --coverage"
|
|
},
|
|
"dependencies": {
|
|
"@dzeio/object-util": "^1.4.0"
|
|
}
|
|
}
|