-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
80 lines (80 loc) · 2.06 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "textlint-rule-no-dead-link",
"version": "5.2.0",
"description": "A textlint rule to check if all links are alive",
"keywords": [
"rule",
"textlint",
"textlintrule",
"link-checker"
],
"homepage": "https://github.com/textlint-rule/textlint-rule-no-dead-link",
"bugs": "https://github.com/textlint-rule/textlint-rule-no-dead-link/issues",
"repository": "textlint-rule/textlint-rule-no-dead-link",
"license": "MIT",
"author": "nodaguti",
"main": "lib/no-dead-link.js",
"types": "lib/no-dead-link.d.ts",
"files": [
"lib",
"src"
],
"scripts": {
"build": "textlint-scripts build",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"prepare": "git config --local core.hooksPath .githooks",
"prepublish": "yarn run --if-present build",
"test": "npm run type-check && textlint-scripts test",
"type-check": "tsc --noEmit",
"watch": "textlint-scripts build --watch"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write"
]
},
"prettier": {
"printWidth": 120,
"singleQuote": false,
"tabWidth": 4,
"trailingComma": "none"
},
"dependencies": {
"fs-extra": "^8.1.0",
"get-url-origin": "^1.0.1",
"minimatch": "^3.0.4",
"node-fetch": "^2.6.0",
"p-memoize": "^3.1.0",
"p-queue": "^6.2.0",
"textlint-rule-helper": "^2.2.2"
},
"devDependencies": {
"@textlint/ast-node-types": "^12.2.2",
"@textlint/types": "^12.2.2",
"@types/minimatch": "^5.1.2",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.7",
"@types/node-fetch": "^2.6.2",
"lint-staged": "^13.0.3",
"mocha": "^10.1.0",
"prettier": "^2.7.1",
"textlint": "^12.2.2",
"textlint-scripts": "^12.2.2",
"textlint-tester": "^12.2.2",
"ts-node": "^10.9.1",
"ts-node-test-register": "^10.0.0",
"typescript": "^4.8.4"
},
"packageManager": "yarn@1.22.15",
"engines": {
"node": ">=4"
},
"peerDependencies": {
"textlint": ">= 12.2.0"
},
"peerDependenciesMeta": {
"textlint": {
"optional": true
}
}
}