1
mirror of https://github.com/jakejarvis/get-canonical-url.git synced 2025-04-26 07:45:23 -04:00
get-canonical-url/package.json
dependabot[bot] 78d0bd4ee2
📦 npm: Bump jsdom and @types/jsdom
Bumps [jsdom](https://github.com/jsdom/jsdom) and [@types/jsdom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jsdom). These dependencies needed to be updated together.

Updates `jsdom` from 18.0.1 to 20.0.1
- [Release notes](https://github.com/jsdom/jsdom/releases)
- [Changelog](https://github.com/jsdom/jsdom/blob/master/Changelog.md)
- [Commits](https://github.com/jsdom/jsdom/compare/18.0.1...20.0.1)

Updates `@types/jsdom` from 16.2.13 to 20.0.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jsdom)

---
updated-dependencies:
- dependency-name: jsdom
  dependency-type: direct:development
  update-type: version-update:semver-major
- dependency-name: "@types/jsdom"
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-10-03 03:26:07 +00:00

60 lines
1.5 KiB
JSON

{
"name": "get-canonical-url",
"version": "1.1.0",
"description": "🔗 Determines the current page's canonical URL and optionally normalizes it for consistency.",
"license": "MIT",
"repository": "jakejarvis/get-canonical-url",
"author": {
"name": "Jake Jarvis",
"email": "jake@jarv.is",
"url": "https://jarv.is/"
},
"type": "module",
"files": [
"dist"
],
"source": "./src/get-canonical-url.ts",
"main": "./dist/get-canonical-url.cjs",
"module": "./dist/get-canonical-url.esm.js",
"unpkg": "./dist/get-canonical-url.min.js",
"exports": {
"require": "./dist/get-canonical-url.cjs",
"import": "./dist/get-canonical-url.esm.js",
"browser": "./dist/get-canonical-url.min.js"
},
"types": "./dist/get-canonical-url.d.ts",
"scripts": {
"build": "microbundle --format cjs,esm,umd --name 'canonicalUrl'",
"test": "mocha",
"lint": "eslint .",
"prepublishOnly": "yarn build"
},
"dependencies": {},
"devDependencies": {
"@jakejarvis/eslint-config": "*",
"@types/chai": "^4.2.22",
"@types/jsdom": "^20.0.0",
"@types/mocha": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"chai": "^4.3.4",
"eslint": "^8.2.0",
"jsdom": "^20.0.1",
"microbundle": "^0.14.1",
"mocha": "^9.1.3",
"normalize-url": "^7.0.2",
"typescript": "^4.4.4"
},
"keywords": [
"url",
"uri",
"canonical",
"link",
"address",
"dom",
"browser",
"normalize",
"front-end"
]
}