forked from Laboratoria/LIM015-md-links
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) Β· 1.33 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
{
"name": "mysticbel-mdlinks",
"version": "0.1.0",
"description": "This library allows you to find links within markdown files, filter them in an array, validate them, provide statistics and look for broken links. Project for Laboratoria ",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "jest --verbose --coverage --detectOpenHandles",
"dev": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mysticBel/LIM015-md-links.git"
},
"keywords": [
"md-links",
"npm",
"Javascript",
"Nodejs",
"API",
"CLI",
"HTTP"
],
"author": "Maribel Maza",
"license": "MIT",
"bin": {
"md-links": "cli.js"
},
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/mysticBel/LIM015-md-links/issues"
},
"homepage": "https://github.com/mysticBel/LIM015-md-links#readme",
"dependencies": {
"axios": "^0.21.1",
"chalk": "^4.1.2",
"figlet": "^1.5.0",
"inquirer": "^8.1.2",
"jest": "^27.0.6",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.13",
"require": "^2.4.20"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0"
}
}