{ "name": "eslint-utils", "version": "1.4.2", "description": "Utilities for ESLint plugins.", "engines": { "node": ">=6" }, "sideEffects": false, "main": "index", "module": "index.mjs", "files": [ "index.*" ], "dependencies": { "eslint-visitor-keys": "^1.0.0" }, "devDependencies": { "@mysticatea/eslint-plugin": "^10.0.3", "codecov": "^3.0.2", "dot-prop": "^4.2.0", "eslint": "^5.16.0", "esm": "^3.0.55", "espree": "^5.0.1", "mocha": "^5.2.0", "nyc": "^13.0.1", "opener": "^1.4.3", "rimraf": "^2.6.2", "rollup": "^1.16.7", "rollup-plugin-sourcemaps": "^0.4.2", "vuepress": "^0.14.4", "warun": "^1.0.0" }, "scripts": { "prebuild": "npm run -s clean", "build": "rollup -c", "clean": "rimraf .nyc_output coverage index.*", "codecov": "nyc report -r lcovonly && codecov", "coverage": "nyc report -r lcov && opener ./coverage/lcov-report/index.html", "docs:build": "vuepress build docs", "docs:watch": "vuepress dev docs", "lint": "eslint src test", "pretest": "npm run -s lint && npm run -s build", "test": "nyc mocha --reporter dot \"test/*.js\"", "preversion": "npm test && npm run -s build", "postversion": "git push && git push --tags", "prewatch": "npm run -s clean", "watch": "warun \"{src,test}/**/*.js\" -- nyc --reporter lcov mocha --reporter dot \"test/*.js\"" }, "repository": { "type": "git", "url": "git+https://github.com/mysticatea/eslint-utils.git" }, "keywords": [ "eslint" ], "author": "Toru Nagashima", "license": "MIT", "bugs": { "url": "https://github.com/mysticatea/eslint-utils/issues" }, "homepage": "https://github.com/mysticatea/eslint-utils#readme" }