-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.36 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
{
"name": "storybook-deadlink-checker",
"version": "0.1.3",
"description": "a storybook addon that checks all of the hyperlinks in a storybook markdown file to determine if they are alive or dead",
"main": "index.js",
"bin": "index.js",
"scripts": {
"test": "mocha --full-trace --timeout 10000 --reporter spec"
},
"type": "module",
"keywords": [
"storybook-addons",
"debug",
"broken link",
"test"
],
"author": "Abhinaba Ghosh <askabhinaba@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/abhinaba-ghosh/storybook-deadlink-checker.git"
},
"bugs": {
"url": "https://github.com/abhinaba-ghosh/storybook-deadlink-checker/issues"
},
"homepage": "https://github.com/abhinaba-ghosh/storybook-deadlink-checker#readme",
"dependencies": {
"@mdx-js/mdx": "1.6.22",
"chalk": "4.1.2",
"log-symbols": "5.1.0",
"micromatch": "4.0.4",
"puppeteer": "13.0.0",
"remark-slug": "7.0.1",
"retus": "1.1.2",
"unist-util-remove": "3.1.0",
"walk-sync": "3.0.0",
"yargs": "17.0.1"
},
"devDependencies": {
"@babel/core": "7.16.5",
"@babel/preset-env": "7.16.5",
"babel-cli": "6.26.0",
"babel-preset-es2015": "6.24.1",
"chai": "4.3.4",
"mocha": "9.1.3"
},
"storybook": {
"icon": "https://raw.githubusercontent.com/abhinaba-ghosh/storybook-deadlink-checker/main/assets/icon.png",
"displayName": "Storybook Broken Link"
}
}