-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 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
{
"name": "urlpilgrim",
"version": "0.0.10",
"bin": {
"urlpilgrim": "bin/urlpilgrim.js"
},
"description": "A NODE CLI program to search for URLs inside multiple or individual files and check their STATUS as well as check URLs directly.",
"main": "index.js",
"scripts": {
"prettier": "prettier --check .",
"linter": "npx eslint .",
"check-code": "npm run linter && npm run prettier",
"test": "jest --",
"coverage": "jest --collectCoverage --"
},
"homepage": "https://github.com/PedroFonsecaDEV/URLpilgrim",
"repository": {
"type": "git",
"url": "https://github.com/PedroFonsecaDEV/URLpilgrim"
},
"engines": {
"node": ">=12"
},
"keywords": [
"urlcheck",
"url-check",
"urlchecker",
"urlchecker"
],
"preferGlobal": true,
"author": "Pedro Antonio Fonseca Ferreira",
"license": "MIT",
"dependencies": {
"cli-color": "^2.0.0",
"minimist": "^1.2.5",
"node-fetch": "^3.0.0"
},
"devDependencies": {
"eslint": "^7.28.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"execa": "^5.1.1",
"jest": "^27.0.4",
"nock": "^13.1.0",
"prettier": "^2.3.0"
}
}