forked from Laboratoria/DEV007-md-links
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.45 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "karlamacedo-md-links",
"version": "0.2.0",
"type": "module",
"bin": {
"md-links": "./cli.js"
},
"license": "ISC",
"keywords": [
"md-links",
"markdown",
"search",
"links"
],
"testEnvironment": "node",
"engines": {
"node": ">=16.x"
},
"bootcamp": {
"createdAt": "2023-06-20T14:05:58.211Z",
"version": "6.3.0",
"commit": "e129ade681adff8cbb19f82e63f688fef2f08f32"
},
"description": "Library to search for links, verify their validity and obtain statistics of .md files",
"author": {
"name": "Karla Paola Macedo",
"email": "karlapaolamacedo@gmail.com"
},
"main": "cli.js",
"repository": {
"type": "git",
"url": "https://github.com/KarlaMacedo/DEV007-md-links"
},
"scripts": {
"test": "jest --verbose --coverage",
"testing": "jest --watch --coverage",
"start": "node src/index.js"
},
"devDependencies": {
"@babel/cli": "^7.22.5",
"@babel/core": "^7.22.5",
"@babel/plugin-transform-modules-commonjs": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"eslint": "^8.43.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"jest": "^29.5.0"
},
"dependencies": {
"axios": "^1.4.0",
"chalk": "^4.1.2",
"cheerio": "^1.0.0-rc.12",
"jest": "^29.5.0",
"jsdom": "^22.1.0",
"karlamacedo-md-links": "^0.2.0",
"markdown-it": "^13.0.1",
"marked": "^0.7.0"
}
}