-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 1.94 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "linkscanner",
"version": "0.4.0",
"description": "A CLI and node library to scan a source URL and recursively check URLs",
"repository": {
"type": "git",
"url": "github:gburgett/linkscanner"
},
"main": "dist/index.js",
"bin": {
"linkscanner": "bin/linkscanner"
},
"files": [
"dist/**/*",
"bin/**/*",
"vendor/**/*"
],
"scripts": {
"lint": "eslint 'src/**/*.ts'",
"fix": "eslint --fix 'src/**/*.ts'",
"test": "jest",
"build": "tsc",
"check-types": "tsc --noemit",
"prepublishOnly": "npm run build",
"clean": "rm -rf dist; tsc --build --clean; tsc --project tsconfig.test.json --build --clean;; true"
},
"keywords": [
"linkchecker",
"broken-link-checker",
"link",
"scan",
"check"
],
"author": "Gordon Burgett (gordon@gordonburgett.net)",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.1",
"@babel/preset-typescript": "^7.3.3",
"@babel/register": "^7.18.9",
"@types/chalk": "^2.2.0",
"@types/cheerio": "^0.22.11",
"@types/express": "^4.17.0",
"@types/fetch-mock": "^7.2.3",
"@types/jest": "^29.2.0",
"@types/whatwg-url": "^6.4.0",
"@types/yargs": "^15.0.0",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"core-js": "^3.26.0",
"coveralls": "^3.0.3",
"eslint": "^8.26.0",
"express": "^4.17.1",
"fetch-mock": "^9.3.1",
"globby": "^11.0.0",
"jest": "^29.2.2",
"nodemon": "^2.0.2",
"typescript": "^4.8.4"
},
"dependencies": {
"async-toolbox": "^0.4.2",
"chalk": "^4",
"cheerio": "^1.0.0-rc.12",
"cross-fetch": "^3.1.5",
"csv-stringify": "^6.2.0",
"es6-promise": "^4.2.8",
"jsonpath-plus": "^5.0.2",
"universal-url": "^2.0.0",
"yargs": "^13.2.4"
}
}