-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.05 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
{
"name": "hexo-broken-links-checker",
"version": "2.1.0",
"description": "Broken links checker for Hexo static site generator",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sergeyzwezdin/hexo-broken-links-checker.git"
},
"files": [
"index.js",
"lib/"
],
"keywords": [
"hexo",
"checker",
"links",
"tools",
"cli"
],
"author": "Sergey Zwezdin <[email protected]> (https://zwezdin.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/sergeyzwezdin/hexo-broken-links-checker/issues"
},
"homepage": "https://github.com/sergeyzwezdin/hexo-broken-links-checker#readme",
"peerDependencies": {
"hexo": "^5.2.0",
"chalk": "^4.0.0"
},
"dependencies": {
"date-fns": "^2.16.1",
"node-fetch": "^3.1.1"
},
"devDependencies": {
"chalk": "^4.1.0"
}
}