forked from Laboratoria/DEV005-md-links
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 886 Bytes
/
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
{
"name": "mdlinks-ortiz",
"bin": {"mdlinks-ortiz":"src/cli.js"},
"version": "0.1.0",
"engines": {
"node": ">=16.x"
},
"description": "Libreria que lee y analiza archivos en formato Markdown .md para luego verificar los links que contenga y brindar estadísticas.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "jest --coverage",
"lint": "eslint . --ext .js",
"lint-fix": "eslint . --ext .js --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ClauOrtiiz/md-links.git"
},
"author": "Claudia Ortiz",
"license": "ISC",
"bugs": {
"url": "https://github.com/ClauOrtiiz/md-links/issues"
},
"homepage": "https://github.com/ClauOrtiiz/md-links#readme",
"dependencies": {
"axios": "^1.4.0",
"colors": "^1.4.0",
"eslint": "^8.40.0",
"jest": "^29.5.0"
}
}