|
2 | 2 | "name": "eslint-plugin-compat",
|
3 | 3 | "version": "4.1.4",
|
4 | 4 | "description": "Lint browser compatibility of API used",
|
5 |
| - "main": "lib/index.js", |
6 |
| - "repository": { |
7 |
| - "type": "git", |
8 |
| - "url": "git+https://github.com/amilajack/eslint-plugin-compat.git" |
9 |
| - }, |
10 | 5 | "keywords": [
|
11 | 6 | "eslint",
|
12 | 7 | "browser",
|
|
16 | 11 | "caniuse",
|
17 | 12 | "kangax"
|
18 | 13 | ],
|
| 14 | + "homepage": "https://github.com/amilajack/eslint-plugin-compat#readme", |
| 15 | + "bugs": { |
| 16 | + "url": "https://github.com/amilajack/eslint-plugin-compat/issues" |
| 17 | + }, |
| 18 | + "repository": { |
| 19 | + "type": "git", |
| 20 | + "url": "git+https://github.com/amilajack/eslint-plugin-compat.git" |
| 21 | + }, |
| 22 | + "license": "MIT", |
19 | 23 | "author": "Amila Welihinda",
|
20 | 24 | "contributors": [
|
21 | 25 | "Amila Welihinda <amilajack@gmail.com> (https://github.com/amilajack)",
|
22 | 26 | "John Tran <jptran318@gmail.com> (https://github.com/jooohhn)"
|
23 | 27 | ],
|
24 |
| - "license": "MIT", |
25 |
| - "bugs": { |
26 |
| - "url": "https://github.com/amilajack/eslint-plugin-compat/issues" |
27 |
| - }, |
| 28 | + "main": "lib/index.js", |
28 | 29 | "files": [
|
29 | 30 | "lib"
|
30 | 31 | ],
|
31 |
| - "homepage": "https://github.com/amilajack/eslint-plugin-compat#readme", |
32 | 32 | "scripts": {
|
33 | 33 | "benchmarks": "ts-node-transpile-only test/benchmarks.ts",
|
34 | 34 | "build": "rm -rf lib && tsc --project tsconfig.build.json",
|
|
39 | 39 | "tsc": "tsc",
|
40 | 40 | "version": "npm run build"
|
41 | 41 | },
|
| 42 | + "prettier": { |
| 43 | + "semi": true, |
| 44 | + "tabWidth": 2, |
| 45 | + "trailingComma": "es5" |
| 46 | + }, |
| 47 | + "eslintConfig": { |
| 48 | + "env": { |
| 49 | + "jest": true, |
| 50 | + "node": true |
| 51 | + }, |
| 52 | + "parser": "@typescript-eslint/parser", |
| 53 | + "parserOptions": { |
| 54 | + "project": "./tsconfig.json" |
| 55 | + }, |
| 56 | + "extends": [ |
| 57 | + "airbnb-typescript/base", |
| 58 | + "plugin:eslint-plugin/recommended", |
| 59 | + "plugin:import/typescript", |
| 60 | + "plugin:prettier/recommended" |
| 61 | + ], |
| 62 | + "rules": { |
| 63 | + "import/extensions": "off", |
| 64 | + "import/no-extraneous-dependencies": "off" |
| 65 | + }, |
| 66 | + "root": true |
| 67 | + }, |
42 | 68 | "jest": {
|
43 | 69 | "preset": "ts-jest",
|
44 | 70 | "testEnvironment": "node",
|
45 | 71 | "testPathIgnorePatterns": [
|
46 | 72 | "/benchmarks-tmp/"
|
47 | 73 | ]
|
48 | 74 | },
|
| 75 | + "dependencies": { |
| 76 | + "@mdn/browser-compat-data": "^5.3.13", |
| 77 | + "ast-metadata-inferer": "^0.8.0", |
| 78 | + "browserslist": "^4.21.10", |
| 79 | + "caniuse-lite": "^1.0.30001524", |
| 80 | + "find-up": "^5.0.0", |
| 81 | + "lodash.memoize": "^4.1.2", |
| 82 | + "semver": "^7.5.4" |
| 83 | + }, |
49 | 84 | "devDependencies": {
|
50 |
| - "@semantic-release/changelog": "^6.0.2", |
| 85 | + "@semantic-release/changelog": "^6.0.3", |
51 | 86 | "@semantic-release/git": "^10.0.1",
|
| 87 | + "@tsconfig/node16": "^16.1.1", |
52 | 88 | "@types/benchmark": "^2.1.2",
|
53 | 89 | "@types/browserslist": "^4.15.0",
|
54 | 90 | "@types/caniuse-lite": "^1.0.1",
|
55 |
| - "@types/eslint": "^8.21.0", |
56 |
| - "@types/jest": "^29.4.0", |
| 91 | + "@types/eslint": "^8.44.2", |
| 92 | + "@types/jest": "^29.5.4", |
57 | 93 | "@types/lodash.memoize": "^4.1.7",
|
58 | 94 | "@types/semver": "7.5.0",
|
59 |
| - "@typescript-eslint/eslint-plugin": "^5.51.0", |
60 |
| - "@typescript-eslint/parser": "^5.51.0", |
| 95 | + "@typescript-eslint/eslint-plugin": "^6.4.1", |
| 96 | + "@typescript-eslint/parser": "^6.4.1", |
| 97 | + "babel-eslint": "^10.1.0", |
61 | 98 | "benchmark": "^2.1.4",
|
62 | 99 | "browserslist-config-erb": "^0.0.3",
|
63 |
| - "electron": "^23.x.x", |
64 |
| - "eslint": "^8.33.0", |
65 |
| - "eslint-config-airbnb-typescript": "^17.0.0", |
| 100 | + "electron": "^26.x.x", |
| 101 | + "eslint": "^8.48.0", |
| 102 | + "eslint-config-airbnb-typescript": "^17.1.0", |
66 | 103 | "eslint-config-bliss-typescript": "^6.0.2",
|
67 |
| - "eslint-config-prettier": "^8.6.0", |
68 |
| - "eslint-plugin-eslint-plugin": "^5.0.8", |
69 |
| - "eslint-plugin-import": "^2.27.5", |
70 |
| - "eslint-plugin-prettier": "^4.2.1", |
71 |
| - "jest": "^29.4.2", |
72 |
| - "prettier": "^2.8.4", |
73 |
| - "semantic-release": "^20.1.0", |
74 |
| - "simple-git": "^3.16.0", |
75 |
| - "ts-jest": "^29.0.5", |
| 104 | + "eslint-config-prettier": "^9.0.0", |
| 105 | + "eslint-plugin-eslint-plugin": "^5.1.1", |
| 106 | + "eslint-plugin-import": "^2.28.1", |
| 107 | + "eslint-plugin-prettier": "^5.0.0", |
| 108 | + "jest": "^29.6.4", |
| 109 | + "prettier": "^3.0.2", |
| 110 | + "semantic-release": "^21.1.1", |
| 111 | + "simple-git": "^3.19.1", |
| 112 | + "ts-jest": "^29.1.1", |
76 | 113 | "ts-node": "^10.9.1",
|
77 |
| - "typescript": "^4.9.5" |
78 |
| - }, |
79 |
| - "prettier": { |
80 |
| - "trailingComma": "es5", |
81 |
| - "tabWidth": 2, |
82 |
| - "semi": true |
83 |
| - }, |
84 |
| - "dependencies": { |
85 |
| - "@mdn/browser-compat-data": "^5.2.47", |
86 |
| - "@tsconfig/node14": "^1.0.3", |
87 |
| - "ast-metadata-inferer": "^0.8.0", |
88 |
| - "browserslist": "^4.21.5", |
89 |
| - "caniuse-lite": "^1.0.30001473", |
90 |
| - "find-up": "^5.0.0", |
91 |
| - "lodash.memoize": "^4.1.2", |
92 |
| - "semver": "^7.5.4" |
| 114 | + "typescript": "^5.2.2" |
93 | 115 | },
|
94 | 116 | "peerDependencies": {
|
95 | 117 | "eslint": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0"
|
|
101 | 123 | "type": "opencollective",
|
102 | 124 | "url": "https://opencollective.com/eslint-plugin-compat",
|
103 | 125 | "logo": "https://opencollective.com/opencollective/logo.txt"
|
104 |
| - }, |
105 |
| - "eslintConfig": { |
106 |
| - "env": { |
107 |
| - "node": true, |
108 |
| - "jest": true |
109 |
| - }, |
110 |
| - "root": true, |
111 |
| - "parser": "@typescript-eslint/parser", |
112 |
| - "extends": [ |
113 |
| - "airbnb-typescript/base", |
114 |
| - "plugin:eslint-plugin/recommended", |
115 |
| - "plugin:import/typescript", |
116 |
| - "plugin:prettier/recommended" |
117 |
| - ], |
118 |
| - "parserOptions": { |
119 |
| - "project": "./tsconfig.json" |
120 |
| - }, |
121 |
| - "rules": { |
122 |
| - "import/no-extraneous-dependencies": "off", |
123 |
| - "import/extensions": "off" |
124 |
| - } |
125 | 126 | }
|
126 | 127 | }
|
0 commit comments