forked from remarkjs/remark-lint-no-dead-urls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.44 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
{
"name": "remark-lint-no-dead-urls",
"version": "1.0.5",
"description": "Ensure that URLs in your Markdown are alive",
"main": "index.js",
"scripts": {
"precommit": "lint-staged",
"format": "prettier --write \"*.js\"",
"lint": "eslint .",
"test-jest": "jest",
"pretest": "npm run lint",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidtheclark/remark-lint-no-dead-urls.git"
},
"keywords": [
"remark",
"remark-plugin",
"lint",
"markdown",
"remark-lint"
],
"author": "David Clark",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidtheclark/remark-lint-no-dead-urls/issues"
},
"homepage": "https://github.com/davidtheclark/remark-lint-no-dead-urls#readme",
"dependencies": {
"check-links": "avanbrunt-cb/check-links",
"unified-lint-rule": "^1.0.4",
"unist-util-visit": "^2.0.1"
},
"devDependencies": {
"dedent": "^0.7.0",
"eslint": "^6.7.1",
"eslint-plugin-node": "^10.0.0",
"husky": "^3.1.0",
"jest": "^28.1.2",
"lint-staged": "^9.5.0",
"prettier": "1.19.1",
"remark": "^14.0.2"
},
"jest": {
"testEnvironment": "node",
"clearMocks": true,
"transform": {}
},
"prettier": {
"singleQuote": true,
"arrowParens": "always"
},
"engines": {
"node": ">=6"
},
"lint-staged": {
"*.js": [
"eslint",
"prettier --write",
"git add"
]
}
}