|
2 | 2 | "name": "@eslint-community/eslint-plugin-mysticatea", |
3 | 3 | "version": "0.0.0-semantically-released", |
4 | 4 | "description": "Additional ESLint rules.", |
5 | | - "engines": { |
6 | | - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" |
| 5 | + "keywords": [ |
| 6 | + "eslint", |
| 7 | + "eslintplugin", |
| 8 | + "block", |
| 9 | + "scope", |
| 10 | + "instanceof", |
| 11 | + "isArray", |
| 12 | + "static", |
| 13 | + "this", |
| 14 | + "rest", |
| 15 | + "spread", |
| 16 | + "ignore" |
| 17 | + ], |
| 18 | + "homepage": "https://github.com/eslint-community/eslint-plugin-mysticatea#readme", |
| 19 | + "bugs": { |
| 20 | + "url": "https://github.com/eslint-community/eslint-plugin-mysticatea/issues" |
7 | 21 | }, |
| 22 | + "repository": { |
| 23 | + "type": "git", |
| 24 | + "url": "https://github.com/eslint-community/eslint-plugin-mysticatea" |
| 25 | + }, |
| 26 | + "license": "MIT", |
| 27 | + "author": "Toru Nagashima", |
8 | 28 | "main": "index.js", |
9 | 29 | "files": [ |
10 | 30 | "lib" |
11 | 31 | ], |
12 | | - "peerDependencies": { |
13 | | - "eslint": ">=6.6.0" |
| 32 | + "scripts": { |
| 33 | + "clean": "rimraf .nyc_output coverage", |
| 34 | + "coverage": "opener coverage/lcov-report/index.html", |
| 35 | + "format": "prettier -w .", |
| 36 | + "lint": "eslint lib scripts tests", |
| 37 | + "test": "nyc mocha \"tests/lib/**/*.js\" --reporter dot", |
| 38 | + "update": "node scripts/generate-browser-globals && node scripts/generate-configs && node scripts/generate-rules", |
| 39 | + "preversion": "run-s clean update test", |
| 40 | + "version": "eslint lib/rules --fix && git add lib", |
| 41 | + "postversion": "git push && git push --tags", |
| 42 | + "watch": "mocha \"tests/lib/**/*.js\" --reporter dot --watch --growl" |
14 | 43 | }, |
15 | 44 | "dependencies": { |
16 | 45 | "@typescript-eslint/eslint-plugin": "^5.40.0", |
|
35 | 64 | "rimraf": "^3.0.2", |
36 | 65 | "typescript": "^4.8.4" |
37 | 66 | }, |
38 | | - "scripts": { |
39 | | - "clean": "rimraf .nyc_output coverage", |
40 | | - "coverage": "opener coverage/lcov-report/index.html", |
41 | | - "format": "prettier -w .", |
42 | | - "lint": "eslint lib scripts tests", |
43 | | - "test": "nyc mocha \"tests/lib/**/*.js\" --reporter dot", |
44 | | - "update": "node scripts/generate-browser-globals && node scripts/generate-configs && node scripts/generate-rules", |
45 | | - "preversion": "run-s clean update test", |
46 | | - "version": "eslint lib/rules --fix && git add lib", |
47 | | - "postversion": "git push && git push --tags", |
48 | | - "watch": "mocha \"tests/lib/**/*.js\" --reporter dot --watch --growl" |
49 | | - }, |
50 | | - "repository": { |
51 | | - "type": "git", |
52 | | - "url": "https://github.com/eslint-community/eslint-plugin-mysticatea" |
53 | | - }, |
54 | | - "keywords": [ |
55 | | - "eslint", |
56 | | - "eslintplugin", |
57 | | - "block", |
58 | | - "scope", |
59 | | - "instanceof", |
60 | | - "isArray", |
61 | | - "static", |
62 | | - "this", |
63 | | - "rest", |
64 | | - "spread", |
65 | | - "ignore" |
66 | | - ], |
67 | | - "author": "Toru Nagashima", |
68 | | - "license": "MIT", |
69 | | - "bugs": { |
70 | | - "url": "https://github.com/eslint-community/eslint-plugin-mysticatea/issues" |
| 67 | + "peerDependencies": { |
| 68 | + "eslint": ">=6.6.0" |
71 | 69 | }, |
72 | | - "homepage": "https://github.com/eslint-community/eslint-plugin-mysticatea#readme" |
| 70 | + "engines": { |
| 71 | + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" |
| 72 | + } |
73 | 73 | } |
0 commit comments