check-links
Version:
Robustly checks an array of URLs for liveness.
64 lines • 1.46 kB
JSON
{
"name": "check-links",
"version": "3.0.1",
"description": "Robustly checks an array of URLs for liveness.",
"repository": "transitive-bullshit/check-links",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
"type": "module",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"sideEffects": false,
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"keywords": [
"url",
"liveness",
"alive",
"dead",
"404",
"500",
"200",
"check",
"link",
"link-check",
"url-check"
],
"dependencies": {
"expiry-map": "^2.0.0",
"got": "^14.4.4",
"is-relative-url": "^4.0.0",
"p-map": "^7.0.2",
"p-memoize": "^7.1.1"
},
"devDependencies": {
"@fisch0920/eslint-config": "^1.4.0",
"@types/sinon": "^17.0.3",
"nock": "^13.5.5",
"npm-run-all2": "^7.0.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"sinon": "^19.0.2",
"typescript": "^5.6.3",
"vitest": "2.1.4"
},
"scripts": {
"build": "tsc",
"docs": "update-markdown-jsdoc --no-markdown-toc --shallow",
"prebuild": "rimraf dist",
"pretest": "run-s build",
"test": "run-s test:*",
"test:format": "prettier --check \"**/*.{js,ts,tsx}\"",
"test:lint": "eslint .",
"test:typecheck": "tsc --noEmit",
"test:unit": "vitest run"
}
}