forked from Laboratoria/DEV003-md-links
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.03 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
{
"name": "md-links-angieli",
"version": "1.0.2",
"engines": {
"node": ">=16.x"
},
"bootcamp": {
"createdAt": "2023-02-07T18:15:01.196Z",
"version": "5.5.0",
"commit": "a63a770ea33332882790401851df337734b0b734"
},
"description": "Library in charge of reading and parsing files in Markdown format, to verify the links they contain and report statistics (if the links work well or if they are broken).",
"main": "./CLI.js",
"directories": {
"test": "test"
},
"scripts": {
"eslint": "eslint --ext .js test/",
"pretest": "npm run eslint",
"test": "jest --verbose --coverage"
},
"keywords": [
"http",
"links",
"markdown",
"NodeJs"
],
"author": "Angie Cómbita",
"license": "ISC",
"bin": {
"md-links": "./CLI.js"
},
"dependencies": {
"colors": "^1.4.0",
"eslint": "^8.35.0",
"node-emoji": "^1.11.0"
},
"devDependencies": {
"jest": "^27.5.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/angieli13/DEV003-md-links"
}
}