Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
This project manages its dependencies using npm. Learn more
package.json 1.86 KiB
{
	"name": "broken-links-inspector",
	"version": "1.1.3",
	"description": "Extract and recursively check all URLs reporting broken ones",
	"main": "dist/inspector.js",
	"types": "dist/inspector.d.ts",
	"directories": {
		"test": "test"
	},
	"scripts": {
		"clean": "rm -rf .nyc_output coverage dist test-results.xml junit-report.xml dump.lsif",
		"test": "mocha --reporter spec -r ts-node/register test/**/*.ts",
		"lint": "eslint ./{src,test}/**/*.ts -c .eslintrc.yml",
		"test-junit": "mocha --reporter mocha-junit-reporter -r ts-node/register test/**/*.ts",
		"coverage": "nyc --reporter=html --reporter=cobertura --reporter=text -e .ts -n \"src/**/*.ts\" -x \"test/**/*.ts\" npm run test-junit",
		"build": "tsc",
		"prepublishOnly": "npm run build"
	},
	"bin": {
		"bli": "dist/index.js"
	},
	"files": [
		"dist",
		"src"
	],
	"publishConfig": {
		"@dbogatov:registry": "https://git.dbogatov.org/api/v4/projects/227/packages/npm/",
		"registry": "https://registry.npmjs.org/"
	},
	"repository": {
		"type": "git",
		"url": "https://github.com/dbogatov/broken-links-inspector.git"
	},
	"keywords": [
		"404",
		"broken",
		"links",
		"checker",
		"inspector",
		"hyperlink",
		"seo",
		"bad",
		"html",
		"URL"
	],
	"author": "Dmytro Bogatov",
	"license": "MIT",
	"dependencies": {
		"@types/intercept-stdout": "^0.1.0",
		"@types/node": "^14.0.13",
		"axios": "^0.19.2",
		"chalk": "^4.1.0",
		"commander": "^5.1.0",
		"htmlparser2": "^4.1.0",
		"intercept-stdout": "^0.1.2",
		"js2xmlparser": "^4.0.1",
		"matcher": "^3.0.0"
	},
	"devDependencies": {
		"@types/chai": "^4.2.11",
		"@types/mocha": "^7.0.2",
		"@types/sinon": "^9.0.4",
		"@typescript-eslint/eslint-plugin": "^3.4.0",
		"@typescript-eslint/parser": "^3.4.0",
		"chai": "^4.2.0",
		"eslint": "^7.3.1",
		"mocha": "^8.0.1",
		"mocha-junit-reporter": "^2.0.0",
		"nyc": "^15.1.0",
		"ts-node": "^8.10.2",
		"typescript": "^3.9.5"
	}
}