[d565449] | 1 | {
|
---|
| 2 | "name": "@eslint-community/eslint-utils",
|
---|
[0c6b92a] | 3 | "version": "4.4.1",
|
---|
[d565449] | 4 | "description": "Utilities for ESLint plugins.",
|
---|
| 5 | "keywords": [
|
---|
| 6 | "eslint"
|
---|
| 7 | ],
|
---|
| 8 | "homepage": "https://github.com/eslint-community/eslint-utils#readme",
|
---|
| 9 | "bugs": {
|
---|
| 10 | "url": "https://github.com/eslint-community/eslint-utils/issues"
|
---|
| 11 | },
|
---|
| 12 | "repository": {
|
---|
| 13 | "type": "git",
|
---|
| 14 | "url": "https://github.com/eslint-community/eslint-utils"
|
---|
| 15 | },
|
---|
| 16 | "license": "MIT",
|
---|
| 17 | "author": "Toru Nagashima",
|
---|
| 18 | "sideEffects": false,
|
---|
| 19 | "exports": {
|
---|
| 20 | ".": {
|
---|
| 21 | "import": "./index.mjs",
|
---|
| 22 | "require": "./index.js"
|
---|
| 23 | },
|
---|
| 24 | "./package.json": "./package.json"
|
---|
| 25 | },
|
---|
| 26 | "main": "index",
|
---|
| 27 | "module": "index.mjs",
|
---|
| 28 | "files": [
|
---|
| 29 | "index.*"
|
---|
| 30 | ],
|
---|
| 31 | "scripts": {
|
---|
| 32 | "prebuild": "npm run -s clean",
|
---|
| 33 | "build": "rollup -c",
|
---|
| 34 | "clean": "rimraf .nyc_output coverage index.*",
|
---|
| 35 | "coverage": "opener ./coverage/lcov-report/index.html",
|
---|
| 36 | "docs:build": "vitepress build docs",
|
---|
| 37 | "docs:watch": "vitepress dev docs",
|
---|
| 38 | "format": "npm run -s format:prettier -- --write",
|
---|
| 39 | "format:prettier": "prettier .",
|
---|
| 40 | "format:check": "npm run -s format:prettier -- --check",
|
---|
[0c6b92a] | 41 | "lint:eslint": "eslint .",
|
---|
| 42 | "lint:format": "npm run -s format:check",
|
---|
| 43 | "lint:installed-check": "installed-check -v -i installed-check -i npm-run-all2 -i knip",
|
---|
| 44 | "lint:knip": "knip",
|
---|
| 45 | "lint": "run-p lint:*",
|
---|
[d565449] | 46 | "test": "c8 mocha --reporter dot \"test/*.mjs\"",
|
---|
| 47 | "preversion": "npm test && npm run -s build",
|
---|
| 48 | "postversion": "git push && git push --tags",
|
---|
| 49 | "prewatch": "npm run -s clean",
|
---|
| 50 | "watch": "warun \"{src,test}/**/*.mjs\" -- npm run -s test:mocha"
|
---|
| 51 | },
|
---|
| 52 | "dependencies": {
|
---|
[0c6b92a] | 53 | "eslint-visitor-keys": "^3.4.3"
|
---|
[d565449] | 54 | },
|
---|
| 55 | "devDependencies": {
|
---|
[0c6b92a] | 56 | "@eslint-community/eslint-plugin-mysticatea": "^15.6.1",
|
---|
| 57 | "c8": "^8.0.1",
|
---|
| 58 | "dot-prop": "^7.2.0",
|
---|
| 59 | "eslint": "^8.57.1",
|
---|
| 60 | "installed-check": "^8.0.1",
|
---|
| 61 | "knip": "^5.33.3",
|
---|
[d565449] | 62 | "mocha": "^9.2.2",
|
---|
[0c6b92a] | 63 | "npm-run-all2": "^6.2.3",
|
---|
[d565449] | 64 | "opener": "^1.5.2",
|
---|
[0c6b92a] | 65 | "prettier": "2.8.8",
|
---|
[d565449] | 66 | "rimraf": "^3.0.2",
|
---|
[0c6b92a] | 67 | "rollup": "^2.79.2",
|
---|
[d565449] | 68 | "rollup-plugin-sourcemaps": "^0.6.3",
|
---|
[0c6b92a] | 69 | "semver": "^7.6.3",
|
---|
| 70 | "vitepress": "^1.4.1",
|
---|
[d565449] | 71 | "warun": "^1.0.0"
|
---|
| 72 | },
|
---|
| 73 | "peerDependencies": {
|
---|
| 74 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
|
---|
| 75 | },
|
---|
| 76 | "engines": {
|
---|
| 77 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
---|
[0c6b92a] | 78 | },
|
---|
| 79 | "funding": "https://opencollective.com/eslint"
|
---|
[d565449] | 80 | }
|
---|