forked from Laboratoria/DEV010-md-links
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.02 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
{
"name": "md-links-brendanovoa",
"version": "0.1.0",
"description": "Read markdown files and identify broken links",
"type": "commonjs",
"main": "cli.js",
"bin": {
"md-links-brendanovoa": "cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/brendanovoa/md-links.git"
},
"engines": {
"node": ">=16.x"
},
"keywords": [
"Markdown",
"links",
"paths",
"validate"
],
"author": "Brenda Gisel Hernández Novoa",
"license": "ISC",
"bootcamp": {
"createdAt": "2023-09-04T18:43:43.114Z",
"version": "6.7.0",
"commit": "1e61f863787ca573e7e7235dfba9b94c0a4efae3"
},
"devDependencies": {
"eslint": "^8.53.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-jest": "^27.6.0",
"jest": "29.7.0",
"prettier": "3.0.3"
},
"scripts": {
"test": "jest --coverage"
},
"dependencies": {
"cli-table3": "^0.6.3",
"colors": "^1.4.0",
"markdown-it": "^13.0.2",
"node-fetch": "^2.6.7"
}
}