forked from Laboratoria/LIM018-md-links
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.32 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": "md-links-judypd",
"version": "0.1.1",
"description": "librería para buscar links y su estado de validez o error en documentos markdow",
"author": {
"name": "Carolina Palacios <[email protected]>",
"url": "https://github.com/Judypd"
},
"engines": {
"node": ">=16.x"
},
"scripts": {
"start": "node index.js",
"eslint": "eslint --ext .js src/ test/",
"pretest": "npm run eslint",
"test": "jest --coverage --verbose"
},
"license": "ISC",
"bin": {
"md-links": "./src/cli.js"
},
"keywords": [
"javascript",
"nodejs",
"node",
"markdown"
],
"homepage": "https://github.com/Judypd/LIM018-md-links#readme",
"bugs": {
"url": "https://github.com/Judypd/LIM018-md-links/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/Judypd/LIM018-md-links"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/preset-env": "^7.18.10",
"babel-jest": "^29.0.1",
"chalk": "^4.1.2",
"eslint": "^8.23.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-promise": "^6.0.1",
"jest": "^29.0.1"
},
"dependencies": {
"axios": "^0.27.2",
"regenerator-runtime": "^0.13.9"
}
}