1 | {
|
---|
2 | "name": "@eslint-community/eslint-utils",
|
---|
3 | "version": "4.4.0",
|
---|
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",
|
---|
41 | "lint": "eslint .",
|
---|
42 | "test": "c8 mocha --reporter dot \"test/*.mjs\"",
|
---|
43 | "preversion": "npm test && npm run -s build",
|
---|
44 | "postversion": "git push && git push --tags",
|
---|
45 | "prewatch": "npm run -s clean",
|
---|
46 | "watch": "warun \"{src,test}/**/*.mjs\" -- npm run -s test:mocha"
|
---|
47 | },
|
---|
48 | "dependencies": {
|
---|
49 | "eslint-visitor-keys": "^3.3.0"
|
---|
50 | },
|
---|
51 | "devDependencies": {
|
---|
52 | "@eslint-community/eslint-plugin-mysticatea": "^15.2.0",
|
---|
53 | "c8": "^7.12.0",
|
---|
54 | "dot-prop": "^6.0.1",
|
---|
55 | "eslint": "^8.28.0",
|
---|
56 | "mocha": "^9.2.2",
|
---|
57 | "npm-run-all": "^4.1.5",
|
---|
58 | "opener": "^1.5.2",
|
---|
59 | "prettier": "2.8.4",
|
---|
60 | "rimraf": "^3.0.2",
|
---|
61 | "rollup": "^2.79.1",
|
---|
62 | "rollup-plugin-sourcemaps": "^0.6.3",
|
---|
63 | "semver": "^7.3.8",
|
---|
64 | "vitepress": "^1.0.0-alpha.40",
|
---|
65 | "warun": "^1.0.0"
|
---|
66 | },
|
---|
67 | "peerDependencies": {
|
---|
68 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
|
---|
69 | },
|
---|
70 | "engines": {
|
---|
71 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
---|
72 | }
|
---|
73 | }
|
---|