| { |
| "name": "eslint-plugin-lit", |
| "version": "2.1.1", |
| "type": "module", |
| "description": "lit-html support for ESLint", |
| "main": "lib/index.js", |
| "files": [ |
| "lib/", |
| "!lib/test", |
| "docs", |
| "custom_types" |
| ], |
| "scripts": { |
| "clean": "premove ./lib ./coverage", |
| "lint": "eslint \"src/**/*.ts\"", |
| "prebuild": "npm run clean", |
| "build": "tsc", |
| "dev": "npm run lint && npm run build && npm run test", |
| "test": "c8 --reporter=lcov --reporter=text-summary mocha \"lib/test/**/*_test.js\"", |
| "format": "prettier --write \"src/**/*.ts\"", |
| "prepare": "npm run build", |
| "prepublishOnly": "npm run lint && npm run test" |
| }, |
| "repository": { |
| "type": "git", |
| "url": "git+https://github.com/43081j/eslint-plugin-lit.git" |
| }, |
| "keywords": [ |
| "eslint", |
| "eslintplugin", |
| "lit-html", |
| "lit-element" |
| ], |
| "author": "James Garbutt <https://github.com/43081j>", |
| "license": "MIT", |
| "bugs": { |
| "url": "https://github.com/43081j/eslint-plugin-lit/issues" |
| }, |
| "homepage": "https://github.com/43081j/eslint-plugin-lit#readme", |
| "engines": { |
| "node": ">= 18" |
| }, |
| "dependencies": { |
| "parse5": "^6.0.1", |
| "parse5-htmlparser2-tree-adapter": "^6.0.1" |
| }, |
| "peerDependencies": { |
| "eslint": ">= 8" |
| }, |
| "devDependencies": { |
| "@babel/eslint-parser": "^7.24.5", |
| "@babel/plugin-proposal-decorators": "^7.24.1", |
| "@types/chai": "^4.2.16", |
| "@types/eslint": "^8.4.6", |
| "@types/estree": "^1.0.0", |
| "@types/mocha": "^10.0.0", |
| "@types/node": "^20.8.8", |
| "@types/parse5": "^6.0.0", |
| "@types/parse5-htmlparser2-tree-adapter": "^6.0.0", |
| "@typescript-eslint/eslint-plugin": "^6.9.0", |
| "@typescript-eslint/parser": "^6.9.0", |
| "c8": "^10.1.3", |
| "chai": "^4.2.0", |
| "eslint": "^8.23.0", |
| "eslint-config-google": "^0.14.0", |
| "eslint-plugin-eslint-plugin": "^5.0.6", |
| "espree": "^9.0.0", |
| "mocha": "^10.0.0", |
| "premove": "^4.0.0", |
| "prettier": "^3.0.3", |
| "typescript": "^5.2.2" |
| } |
| } |