68 lines
1.4 KiB
JSON
68 lines
1.4 KiB
JSON
{
|
|
"name": "eleventy-plugin-automatic-noopener",
|
|
"version": "2.0.2",
|
|
"description": "11ty plugin for automatically adding a rel='noopener' or rel='noreferrer' attribute to all unsafe external links.",
|
|
"keywords": [
|
|
"11ty",
|
|
"eleventy",
|
|
"eleventy-plugin",
|
|
"posthtml",
|
|
"noreferrer",
|
|
"security",
|
|
"secure",
|
|
"safe",
|
|
"external",
|
|
"link",
|
|
"url",
|
|
"href"
|
|
],
|
|
"homepage": "https://github.com/JKC-Codes/eleventy-plugin-automatic-noopener#readme",
|
|
"bugs": {
|
|
"url": "https://github.com/JKC-Codes/eleventy-plugin-automatic-noopener/issues"
|
|
},
|
|
"license": "MPL-2.0",
|
|
"author": {
|
|
"name": "John Kemp-Cruz",
|
|
"url": "https://jkc.codes/"
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"components/**"
|
|
],
|
|
"main": "index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/JKC-Codes/eleventy-plugin-automatic-noopener.git"
|
|
},
|
|
"scripts": {
|
|
"eleventy": "npx @11ty/eleventy --dryrun --quiet",
|
|
"ava": "ava",
|
|
"test": "concurrently npm:ava npm:eleventy",
|
|
"prepublishOnly": "npm run test"
|
|
},
|
|
"dependencies": {
|
|
"posthtml": "^0.16.0"
|
|
},
|
|
"devDependencies": {
|
|
"@11ty/eleventy": "^0.12.0",
|
|
"ava": "^3.15.0",
|
|
"concurrently": "^6.3.0"
|
|
},
|
|
"peerDependencies": {
|
|
"@11ty/eleventy": "*"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"@11ty/eleventy": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"engines": {
|
|
"node": ">=12.0.0"
|
|
},
|
|
"ava": {
|
|
"files": [
|
|
"!./tests/test-site/**"
|
|
],
|
|
"failFast": true
|
|
}
|
|
}
|