-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.04 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "gitbook-plugin-noopener",
"version": "0.0.1",
"description": "Add rel=\"noopener noreferrer\" for all anchor tag link in content when target not equal with it self domain.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/luckyJeffy/gitbook-plugin-noopener.git"
},
"keywords": [
"gitbook",
"plugin",
"noopener"
],
"author": "Jeffy",
"license": "MIT",
"bugs": {
"url": "https://github.com/luckyJeffy/gitbook-plugin-noopener/issues"
},
"homepage": "https://github.com/luckyJeffy/gitbook-plugin-noopener#readme",
"engines": {
"gitbook": ">1.x.x"
},
"gitbook": {
"properties": {
"noopener": {
"type": "boolean",
"default": true,
"description": "Enable page content filter that add rel='noopener' attribute for anchor tag"
},
"noreferrer": {
"type": "boolean",
"default": true,
"description": "Enable page content filter that add rel='noreferrer' attribute for anchor tag"
}
}
}
}