-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.03 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
{
"name": "link-chek",
"version": "1.0.0",
"description": "CLI link checker for files and webpages",
"main": "bin/linkChek",
"scripts": {
"eslint": "eslint --ignore-path .gitignore",
"eslint-fix": "eslint --fix --ignore-path .gitignore",
"prettier": "prettier --write .",
"prettier-check": "prettier --check .",
"test": "jest --",
"coverage" : "jest --collectCoverage --"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"keywords": [
"linkChek",
"link checker",
"link check",
"cli"
],
"author": "Joel Azwar",
"license": "MIT",
"bin": {
"linkChek": "./bin/linkChek"
},
"dependencies": {
"chalk": "^2.4.2",
"esm": "^3.2.25",
"node-fetch": "^2.6.1",
"yargs": "^13.2.4"
},
"devDependencies": {
"eslint": "^7.13.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"prettier": "2.1.2",
"pretty-quick": "^3.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joelazwar/linkChek.git"
},
"bugs": {
"url": "https://github.com/joelazwar/linkChek/issues"
}
}