forked from Laboratoria/LIM017-md-links
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.54 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-linlopezr",
"version": "1.1.0",
"engines": {
"node": ">=14.x"
},
"description": "MD-Links es una librería para JavaScript que le permite validar las URLs que se encuentren dentro de archivos Markdown(.md), el cual es un lenguaje de marcado ligero muy popular entre developers. Es usado en muchísimas plataformas que manejan texto plano (GitHub, foros, blogs, ...), y es muy común encontrar varios archivos en ese formato en cualquier tipo de repositorio. Esta librería te permitirá obtener: estado de los enlaces, enlaces totales, enlaces únicos y enlaces rotos.",
"main": "src/index.js",
"directories": {
"test": "test"
},
"scripts": {
"start": "node src/index.js",
"test": "jest --verbose --coverage",
"pretest.out": "npm run htmlhint && npm run eslint && npm run stylelint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lindalopezc/LIM17-md-links.git"
},
"keywords": [
"node",
"jest",
"library",
"md",
"markdown",
"links"
],
"author": "Linda Lopez Ramos",
"license": "ISC",
"bugs": {
"url": "https://github.com/lindalopezc/LIM17-md-links/issues"
},
"bin": {
"md-links": "./src/cli.js"
},
"homepage": "https://github.com/lindalopezc/LIM17-md-links#readme",
"devDependencies": {
"eslint": "^8.16.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.2.2",
"jest": "^28.1.0"
},
"dependencies": {
"chalk": "^4.1.0",
"node-fetch": "^2.6.7"
}
}