forked from Laboratoria/BOG005-md-links
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (40 loc) · 952 Bytes
/
package.json
File metadata and controls
41 lines (40 loc) · 952 Bytes
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": "links-md",
"version": "0.1.4",
"engines": {
"node": ">=14.x"
},
"dependencies": {
"chalk": "^4.1.2",
"figlet": "^1.5.2",
"marked": "^4.1.1",
"node-fetch": "^2.6.7"
},
"description": "Es una libreria ejecutable con node.js, extrae los links encontrados en archivos md. Así mismo, puedes ver el status de tus links y algunas estadísticas.",
"main": "index.js",
"directories": {
"test": "test"
},
"devDependencies": {
"jest": "^29.2.2"
},
"scripts": {
"test": "jest --coverage"
},
"jest":{
"testEnvironment":"node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LinaAlvarado/BOG005-md-links.git"
},
"author": "Lina Alvarado",
"license": "ISC",
"bugs": {
"url": "https://github.com/LinaAlvarado/BOG005-md-links/issues"
},
"homepage": "https://github.com/LinaAlvarado/BOG005-md-links#readme",
"bin": {
"mdLinks": "./cli.js"
}
}