forked from Laboratoria/bog001-md-links
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·44 lines (44 loc) · 1.01 KB
/
package.json
File metadata and controls
executable file
·44 lines (44 loc) · 1.01 KB
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
{
"name": "@dcoa/md-links",
"version": "1.0.1",
"description": "Found links in a markdown file and validate the status",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "jest --coverage",
"eslint": "eslint --ext .js index.js cli.js lib/ test/"
},
"bin": {
"md-links": "cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dcoa/bog001-md-links.git"
},
"keywords": [
"md-links",
"library",
"module",
"node.js"
],
"author": "Diana Catalina Olarte Abaunza dcoa@live.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/dcoa/bog001-md-links/issues"
},
"homepage": "https://github.com/dcoa/bog001-md-links#readme",
"devDependencies": {
"eslint": "^7.10.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.4.2"
},
"dependencies": {
"chalk": "^4.1.0",
"marked": "^1.1.1",
"minimist": "^1.2.5",
"node-fetch": "^2.6.1"
}
}