UNPKG

eslint-watch

Version:
98 lines (97 loc) 2.48 kB
{ "name": "eslint-watch", "version": "8.0.0", "description": "Run eslint with watch mode", "main": "./src", "scripts": { "ci:win": "npm run lint && npm test", "ci:test": "npm run lint && npm run test", "clean": "rm -rf build node_modules", "coverage": "nyc npm test", "deploy": "./scripts/deploy.sh", "prepare": "husky install", "lint:watch": "node ./bin/esw -w", "lint": "node ./bin/esw", "mocha": "mocha --recursive --timeout 10000 -r tests/globals.js", "postcoverage": "nyc report --reporter=text-lcov | coveralls", "test:integration": "yarn mocha ./tests/integration/**/*spec.js", "test:unit": "yarn mocha ./tests/unit/**/*spec.js", "test:watch": "npm run test -- -R min -b -w", "test": "yarn mocha ./tests/**/**/**/*spec.js" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "repository": { "type": "git", "url": "https://github.com/rizowski/eslint-watch.git" }, "bin": { "esw": "./bin/esw" }, "files": [ "bin", "src", "package.json", "README.md" ], "keywords": [ "eslint", "plugin", "command line tool", "watch", "javascript", "linter", "cli" ], "author": { "name": "Colten Rouska", "email": "c.rouska@gmail.com" }, "license": "MIT", "lint-staged": { "*.js": [ "npm run lint -- --fix", "prettier --write --print-width=160" ], "*.{md,json,yaml,yml}": [ "prettier --write --print-width=80" ] }, "bugs": { "url": "https://github.com/rizowski/eslint-watch/issues" }, "homepage": "https://github.com/rizowski/eslint-watch", "peerDependencies": { "eslint": ">=8 <9.0.0" }, "dependencies": { "chokidar": "^3.5.2", "debug": "^4.3.2", "execa": "^5.1.1", "keypress": "^0.2.1", "lodash.debounce": "^4.0.8", "lodash.isempty": "^4.4.0", "lodash.isequal": "^4.5.0", "lodash.kebabcase": "^4.1.1", "lodash.unionwith": "^4.6.0", "optionator": "^0.9.1" }, "devDependencies": { "chai": "^4.3.4", "coveralls": "^3.1.1", "eslint": "^8", "eslint-config-prettier": "^8.3.0", "eslint-config-xo-space": "^0.30.0", "eslint-plugin-prettier": "^4.0.0", "husky": "^7.0.4", "lint-staged": "^11.2.6", "mocha": "^9.1.3", "mocha-lcov-reporter": "^1.3.0", "mocha-sinon": "^2.0.0", "nyc": "^15.1.0", "prettier": "^2.4.1", "sinon": "^12.0.1", "sinon-chai": "^3.7.0" } }