eslint-plugin-comment-length
Version:
An ESLint plugin that provides rules that limit the line length of your comments
59 lines (58 loc) • 1.61 kB
JSON
{
"name": "eslint-plugin-comment-length",
"version": "2.2.2",
"description": "An ESLint plugin that provides rules that limit the line length of your comments",
"types": "./lib/index.d.ts",
"main": "./lib/cjs/index.cjs",
"module": "./lib/mjs/index.js",
"type": "module",
"exports": {
".": {
"types": "./src/index.ts",
"import": "./lib/mjs/index.js",
"require": "./lib/cjs/index.cjs",
"default": "./lib/cjs/index.cjs"
}
},
"files": [
"lib/**",
"src/**"
],
"keywords": [
"eslint",
"eslintplugin",
"max-len",
"comments",
"reflow"
],
"scripts": {
"build": "rm -rf ./lib && ROLLUP__FORMAT=cjs rollup -c rollup.config.js && ROLLUP__FORMAT=esm rollup -c rollup.config.js && tsc",
"watch": "ROLLUP__FORMAT=esm rollup -c rollup.config.js --watch",
"prepublishOnly": "cp ../README.md ./README.md; npm run build",
"postpublish": "rm README.md",
"type-check": "tsc --noEmit"
},
"author": "Lasse Felskov Agersten <lfa@appear.dk>",
"repository": {
"type": "git",
"url": "https://github.com/lasselupe33/eslint-plugin-comment-length.git"
},
"license": "MIT",
"dependencies": {
"@typescript-eslint/utils": "^8.2.0"
},
"devDependencies": {
"@types/eslint": "^9.6.0",
"@types/estree": "^1.0.5",
"@types/node": "^20.16.1",
"@typescript-eslint/rule-tester": "^8.2.0",
"enhanced-resolve": "^5.17.1",
"esbuild": "^0.23.1",
"rollup": "^4.21.0",
"rollup-plugin-esbuild": "^6.1.1",
"typescript": "^5.5.4"
},
"peerDependencies": {
"eslint": ">=8.0.0"
}
}