forked from Laboratoria/GDL004-md-links
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.2 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
{
"name": "gio-md-links",
"version": "1.0.3",
"description": "Helps you find broken links in your markdown files",
"main": "app.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/giovsteph/GDL004-md-links.git"
},
"keywords": [
"link",
"broken",
"check"
],
"author": "Giovanna Ponce",
"bin": {
"mdLinks-Giov": "./cli.js"
},
"engines": {
"node": ">=0.10.0"
},
"files": [
"app.js",
"cli.js"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/giovsteph/GDL004-md-links/issues"
},
"homepage": "https://github.com/giovsteph/GDL004-md-links#readme",
"devDependencies": {
"cross-env": "^7.0.0",
"eslint": "^6.8.0",
"jest": "^25.1.0",
"supertest": "^4.0.2"
},
"dependencies": {
"async": "^3.1.1",
"bluebird": "^3.7.2",
"es6-promise": "^4.2.8",
"markdown-it": "^10.0.0",
"then": "0.0.1"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}