|
2 | 2 | "name": "@eslint-community/eslint-utils",
|
3 | 3 | "version": "0.0.0-semantically-released",
|
4 | 4 | "description": "Utilities for ESLint plugins.",
|
5 |
| - "engines": { |
6 |
| - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" |
| 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" |
7 | 15 | },
|
| 16 | + "license": "MIT", |
| 17 | + "author": "Toru Nagashima", |
8 | 18 | "sideEffects": false,
|
9 |
| - "main": "index", |
10 |
| - "module": "index.mjs", |
11 |
| - "files": [ |
12 |
| - "index.*" |
13 |
| - ], |
14 | 19 | "exports": {
|
15 | 20 | ".": {
|
16 | 21 | "import": "./index.mjs",
|
17 | 22 | "require": "./index.js"
|
18 | 23 | },
|
19 | 24 | "./package.json": "./package.json"
|
20 | 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": "vuepress build docs", |
| 37 | + "docs:watch": "vuepress 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": "nyc mocha --reporter dot \"test/*.js\"", |
| 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}/**/*.js\" -- npm run -s test:mocha" |
| 47 | + }, |
21 | 48 | "dependencies": {
|
22 | 49 | "eslint-visitor-keys": "^3.3.0"
|
23 | 50 | },
|
|
42 | 69 | "peerDependencies": {
|
43 | 70 | "eslint": ">=6"
|
44 | 71 | },
|
45 |
| - "scripts": { |
46 |
| - "prebuild": "npm run -s clean", |
47 |
| - "build": "rollup -c", |
48 |
| - "clean": "rimraf .nyc_output coverage index.*", |
49 |
| - "codecov": "nyc report -r lcovonly && codecov", |
50 |
| - "coverage": "opener ./coverage/lcov-report/index.html", |
51 |
| - "docs:build": "vuepress build docs", |
52 |
| - "docs:watch": "vuepress dev docs", |
53 |
| - "format": "npm run -s format:prettier -- --write", |
54 |
| - "format:prettier": "prettier docs/.vuepress/config.js src/**/*.js test/**/*.js rollup.config.js .vscode/*.json *.json .github/**/*.yml *.yml docs/**/*.md *.md", |
55 |
| - "format:check": "npm run -s format:prettier -- --check", |
56 |
| - "lint": "eslint .", |
57 |
| - "test": "nyc mocha --reporter dot \"test/*.js\"", |
58 |
| - "preversion": "npm test && npm run -s build", |
59 |
| - "postversion": "git push && git push --tags", |
60 |
| - "prewatch": "npm run -s clean", |
61 |
| - "watch": "warun \"{src,test}/**/*.js\" -- npm run -s test:mocha" |
62 |
| - }, |
63 |
| - "repository": { |
64 |
| - "type": "git", |
65 |
| - "url": "https://github.com/eslint-community/eslint-utils" |
66 |
| - }, |
67 |
| - "keywords": [ |
68 |
| - "eslint" |
69 |
| - ], |
70 |
| - "author": "Toru Nagashima", |
71 |
| - "license": "MIT", |
72 |
| - "bugs": { |
73 |
| - "url": "https://github.com/eslint-community/eslint-utils/issues" |
74 |
| - }, |
75 |
| - "homepage": "https://github.com/eslint-community/eslint-utils#readme" |
| 72 | + "engines": { |
| 73 | + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" |
| 74 | + } |
76 | 75 | }
|
0 commit comments