@jkba/eslint-config-angular 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +16 -6
  2. package/package.json +12 -14
package/README.md CHANGED
@@ -1,18 +1,28 @@
1
1
  # eslint-config-angular
2
2
 
3
+ ![](https://img.shields.io/npm/dt/@jkba/eslint-config-angular?logo=npm)
4
+
5
+
3
6
  Opinionated ESLint config for Angular projects
4
7
 
5
8
 
6
9
  ## Installation
7
10
 
8
- For some unknown weird reason, following dependencies have to be installed in your project as well. (https://github.com/jmeinlschmidt/eslint-config-angular/issues/5)
9
-
10
11
  ```sh
11
- npm i -D eslint-plugin-rxjs eslint-plugin-rxjs-angular
12
- ```
12
+ npm i -D \
13
+ prettier \
14
+ @angular-eslint/eslint-plugin \
15
+ @angular-eslint/eslint-plugin-template \
16
+ @angular-eslint/template-parser \
17
+ @typescript-eslint/eslint-plugin \
18
+ @typescript-eslint/parser \
19
+ eslint-plugin-import \
20
+ eslint-config-prettier \
21
+ eslint-plugin-prettier \
22
+ eslint-plugin-rxjs \
23
+ eslint-plugin-rxjs-angular \
24
+ @jkba/eslint-config-angular
13
25
 
14
- ```sh
15
- npm i -D @jkba/eslint-config-angular
16
26
  ```
17
27
 
18
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jkba/eslint-config-angular",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Opinionated ESLint config for Angular projects",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -32,19 +32,17 @@
32
32
  "homepage": "https://github.com/jmeinlschmidt/eslint-config-angular#readme",
33
33
  "peerDependencies": {
34
34
  "eslint": ">=8",
35
+ "typescript": ">=4",
35
36
  "prettier": ">=3",
36
- "rxjs": ">=7",
37
- "typescript": ">=4"
38
- },
39
- "dependencies": {
40
- "@angular-eslint/eslint-plugin": "^16.0.0",
41
- "@angular-eslint/eslint-plugin-template": "^16.0.0",
42
- "@angular-eslint/template-parser": "^16.0.0",
43
- "@typescript-eslint/eslint-plugin": "^6.0.0",
44
- "@typescript-eslint/parser": "^6.0.0",
45
- "eslint-plugin-import": "^2.27.5",
46
- "eslint-plugin-prettier": "^5.0.0",
47
- "eslint-plugin-rxjs": "^5.0.3",
48
- "eslint-plugin-rxjs-angular": "^2.0.1"
37
+ "@angular-eslint/eslint-plugin": ">=16",
38
+ "@angular-eslint/eslint-plugin-template": ">=16",
39
+ "@angular-eslint/template-parser": ">=16",
40
+ "@typescript-eslint/eslint-plugin": ">=6",
41
+ "@typescript-eslint/parser": ">=6",
42
+ "eslint-plugin-import": ">=2.27.0",
43
+ "eslint-config-prettier": ">=8",
44
+ "eslint-plugin-prettier": ">=5",
45
+ "eslint-plugin-rxjs": ">=5",
46
+ "eslint-plugin-rxjs-angular": ">=2"
49
47
  }
50
48
  }