-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 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
{
"name": "urls-inspector",
"version": "1.0.0",
"description": "This is to check different Url if they are working or not by using a command line tool.",
"preferGlobal": true,
"bin": {
"url-inspector": "./index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chawlapalak/Url-Inspector.git"
},
"author": "Palak Chawla",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/chawlapalak/Url-Inspector/issues"
},
"homepage": "https://github.com/chawlapalak/Url-Inspector#readme",
"dependencies": {
"axios": "^0.20.0",
"colors": "^1.4.0",
"commander": "^6.1.0",
"dotenv": "^8.2.0",
"execa": "^4.1.0"
},
"devDependencies": {
"eslint": "^7.13.0",
"eslint-plugin-react": "^7.21.5",
"jest": "^26.6.3",
"prettier": "2.1.2"
},
"scripts": {
"test": "jest",
"coverage": "jest --collectCoverage --"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"*/.js",
"!*/node_modules/*",
"!**/*.txt"
]
}
}