forked from Laboratoria/DEV007-md-links
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 901 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 901 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
42
{
"name": "markdown-link-validator-api",
"version": "0.1.0",
"description": "Tool to read, validate, and analyze files in Markdown format.",
"main": "index.js",
"bin": {
"mdLinks": "./app.js"
},
"keywords": [
"node.js",
"http",
"mdlinks",
"project"
],
"author": "Mariem Padron",
"license": "ISC",
"engines": {
"node": ">=16.x"
},
"repository": {
"type": "git",
"url": "https://github.com/mjpadron11/DEV007-md-links.git"
},
"bootcamp": {
"createdAt": "2023-06-20T14:05:58.211Z",
"version": "6.3.0",
"commit": "e129ade681adff8cbb19f82e63f688fef2f08f32"
},
"dependencies": {
"axios": "^1.4.0",
"cli-table": "^0.3.11",
"colors": "^1.4.0",
"marked": "^6.0.0"
},
"scripts": {
"test": "jest --verbose --coverage"
},
"devDependencies": {
"eslint-plugin-jest": "^27.2.3",
"jest": "^29.6.2"
}
}