UNPKG

eslint_d

Version:

Speed up eslint to accelerate your development workflow

64 lines (63 loc) 1.72 kB
{ "name": "eslint_d", "version": "14.0.0", "description": "Speed up eslint to accelerate your development workflow", "type": "module", "bin": { "eslint_d": "./bin/eslint_d.js" }, "engines": { "node": ">=18" }, "keywords": [ "daemon", "eslint", "faster", "lint", "performance" ], "author": "Maximilian Antoni <mail@maxantoni.de> (http://maxantoni.de/)", "homepage": "https://github.com/mantoni/eslint_d.js", "scripts": { "lint": "eslint .", "test": "mocha '**/*.test.js'", "test:integration": "mocha --bail --slow 1000 test/test.integration.js", "watch": "chokidar '**/*.js' -c 'npm t' --initial --silent", "prepare": "sh scripts/install-fixture-deps.sh", "preversion": "npm run lint && npm run prettier:check && tsc && npm test && npm run test:integration", "version": "changes --commits --footer", "postversion": "git push --follow-tags && npm publish", "prettier:check": "prettier --check '**/*.{js,json,md}'", "prettier:write": "prettier --write '**/*.{js,json,md}'" }, "mocha": { "reporter": "dot", "require": "test/hooks.js", "ignore": "node_modules/**" }, "dependencies": { "eslint": "^9.8.0", "supports-color": "^9.4.0" }, "devDependencies": { "@sinonjs/referee-sinon": "^12.0.0", "@studio/eslint-config": "^8.0.0", "@studio/tsconfig": "^1.3.0", "@types/node": "^22.0.0", "chokidar-cli": "^3.0.0", "mocha": "^10.7.0", "prettier": "^3.3.3", "typescript": "^5.5.4" }, "files": [ "bin", "lib", "LICENSE", "README.md" ], "repository": { "type": "git", "url": "https://github.com/mantoni/eslint_d.js.git" }, "license": "MIT" }