-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.25 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
39
40
41
42
43
44
45
46
47
48
{
"name": "posthtml-external-link",
"version": "0.1.2",
"description": "Add 'rel=\"external noopener nofollow\"' and 'target=\"_blank\"' to all external links [PostHTML Plugin]",
"main": "dist",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"lint": "eslint --ext .ts --ignore-path .gitignore ./",
"test": "ts-mocha -p test/tsconfig.json test/test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SukkaW/posthtml-external-link.git"
},
"keywords": [
"posthtml",
"posthtml-plugins",
"nofollow",
"seo",
"external-link"
],
"author": "Sukka <https://skk.moe>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SukkaW/posthtml-external-link/issues"
},
"homepage": "https://github.com/SukkaW/posthtml-external-link#readme",
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.8",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"chai": "^4.2.0",
"eslint": "^7.13.0",
"eslint-config-sukka": "^1.0.4",
"mocha": "^8.2.1",
"posthtml": "^0.16.1",
"ts-mocha": "^8.0.0",
"typescript": "^4.1.2"
},
"peerDependencies": {
"posthtml": "^0.16.1"
}
}