-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.09 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.09 KB
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
{
"name": "web-tests",
"version": "1.0.0",
"description": "useful tools for checking websites",
"main": "index.ts",
"type": "module",
"engines": {
"node": ">=16"
},
"scripts": {
"ssl": "ts-node index.ts ssl",
"crawl": "ts-node index.ts crawl",
"offline": "export DEBUG=website-scraper:info; ts-node index.ts offline"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OnlyPain-ctrl/web-tests.git"
},
"author": "M. Gschwandtner",
"license": "ISC",
"bugs": {
"url": "https://github.com/OnlyPain-ctrl/web-tests/issues"
},
"homepage": "https://github.com/OnlyPain-ctrl/web-tests#readme",
"dependencies": {
"@types/node": "^18.11.10",
"linkinator": "^4.1.1",
"ssl-checker": "^2.0.7",
"ts-node": "^10.9.1",
"@types/website-scraper": "^1.2.6",
"website-scraper": "^5.3.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0"
}
}