-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 871 Bytes
/
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
{
"name": "validattp",
"version": "1.0.1",
"type": "module",
"description": "This is a npm lib project made to detect and validate links in markdown text files.",
"main": "index.js",
"scripts": {
"test": "jest ./test ",
"cli": "node ./cli.js"
},
"keywords": [
"markdown",
"URL"
],
"homepage": "https://github.com/gabrielgusn/http-validation-lib",
"author": "Gabriel Gustavo Nicolodi",
"bugs": {
"url": "https://github.com/gabrielgusn/http-validation-lib",
"linkedin": "https://www.linkedin.com/in/gabrielgusn/"
},
"bin": {
"validattp": "./cli.js"
},
"preferGlobal": true,
"license": "ISC",
"dependencies": {
"babel-jest": "^28.1.3",
"chalk": "^5.0.1",
"node-fetch": "^3.2.10",
"ts-jest": "^28.0.7"
},
"devDependencies": {
"@babel/preset-env": "^7.18.10",
"jest": "^28.1.3"
}
}