-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.45 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
54
55
56
57
{
"name": "urltester2",
"version": "1.0.1",
"description": "Command-line tool for finding and reporting dead links (e.g., broken URLs) in a file",
"main": "index.js",
"bin": {
"urltester": "index.js"
},
"jest": {
"automock": false,
"setupFiles": [
"./setupJest.js"
]
},
"scripts": {
"test": "jest",
"coverage": "jest --collectCoverage",
"eslint": "eslint --ignore-path .gitignore .",
"eslint-fix": "eslint --fix --ignore-path .gitignore .",
"lint": "npm run eslint",
"prettier": "prettier --write \"./**/*.{md,jsx,json,html,css,js,yml}\"",
"prettier-check": "prettier --check \"./**/*.{md,jsx,json,html,css,js,yml}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Shinh18/urltest.git"
},
"keywords": [
"cli"
],
"preferGlobal": true,
"author": "Muskan Shinh",
"license": "MIT",
"bugs": {
"url": "https://github.com/Shinh18/urltest/issues"
},
"homepage": "https://github.com/Shinh18/urltest#readme",
"dependencies": {
"boxen": "^4.2.0",
"chalk": "^4.1.0",
"dotenv": "^8.2.0",
"execa": "^4.1.0",
"fetch": "^1.1.0",
"fs": "0.0.1-security",
"node-fetch": "^2.6.1",
"path": "^0.12.7",
"yargs": "^16.1.1"
},
"devDependencies": {
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.3",
"jest-fetch-mock": "^3.0.3",
"prettier": "2.1.2"
}
}