forked from Laboratoria/DEV001-md-links
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.22 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
{
"name": "md-links",
"version": "0.1.0",
"engines": {
"node": ">=16.x"
},
"bootcamp": {
"createdAt": "2022-11-16T21:49:06.371Z",
"version": "5.4.0",
"commit": "14aeca030be012fc987dcb1c604bbbcb0fdd325e"
},
"description": "Librería encargada de leer y analizar archivos en formato Markdown, para verificar los links que contengan y reportar estadísticas (si los links funcionan bien o si están rotos).",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/valeriamurguiag/DEV001-md-links.git"
},
"keywords": [
"markdown",
"links"
],
"author": "Valeria Murguia Garcia",
"license": "ISC",
"bin": {
"md-links": "./cli.js"
},
"bugs": {
"url": "https://github.com/valeriamurguiag/DEV001-md-links/issues"
},
"homepage": "https://github.com/valeriamurguiag/DEV001-md-links#readme",
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"jest": "^29.3.1"
},
"dependencies": {
"chalk": "^4.1.0",
"fetch-mock": "^9.11.0",
"jsdom": "^21.0.0",
"markdown-it": "^13.0.1",
"node-cmd": "^5.0.0",
"node-fetch": "^2.6.8"
}
}