@jeroenpol/eslint-config 1.0.3 → 1.0.5

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 +4 -12
  2. package/package.json +7 -24
package/README.md CHANGED
@@ -1,6 +1,4 @@
1
- # polware eslint-config <sup>[![Version Badge][npm-version-svg]][package-url]</sup>
2
-
3
- [![npm version](https://badge.fury.io/js/eslint-config-airbnb-base.svg)][package-url]
1
+ # polware eslint-config
4
2
 
5
3
  ## Usage
6
4
 
@@ -9,17 +7,11 @@ Use this esLint config as a basis for you Angular projects.
9
7
  ### Installation
10
8
 
11
9
  ```sh
12
- npm i --save-dev jeroenpol/eslint-config
10
+ npm i --save-dev @jeroenpol/eslint-config
13
11
  ```
14
12
 
15
- 1. Install the correct versions of each package, which are listed by the command:
16
-
17
- ```sh
18
- npm info "jeroenpol/eslint-config@latest" peerDependencies
19
- ```
20
-
21
- If using **npm 5+**, use this shortcut
13
+ 1. Install peer dependencies using NPM 5+ and this command:
22
14
 
23
15
  ```sh
24
- npx install-peerdeps --dev polware/eslint-config
16
+ npx install-peerdeps --dev @jeroenpol/eslint-config
25
17
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jeroenpol/eslint-config",
3
- "version": "1.0.3",
3
+ "version": "1.0.5",
4
4
  "description": "ES Lint config made for Angular, configured by Polware",
5
5
  "main": "index.js",
6
6
  "exports": {
@@ -13,7 +13,7 @@
13
13
  "scripts": {},
14
14
  "repository": {
15
15
  "type": "git",
16
- "url": "https://github.com/airbnb/javascript"
16
+ "url": "https://github.com/jeroenpol/eslint-config"
17
17
  },
18
18
  "keywords": [
19
19
  "eslint",
@@ -34,24 +34,13 @@
34
34
  ],
35
35
  "license": "MIT",
36
36
  "bugs": {
37
- "url": "https://github.com/TOADD"
37
+ "url": "https://github.com/jeroenpol/eslint-config"
38
38
  },
39
- "homepage": "https://github.com/TOADD",
40
- "devDependencies": {
41
- "eslint": "8.57.0",
42
- "eslint-config-prettier": "9.1.0",
43
- "eslint-plugin-functional": "6.5.1",
44
- "eslint-plugin-redundant-undefined": "^1.0.0",
45
- "eslint-plugin-rxjs-angular": "2.0.1",
46
- "eslint-plugin-simple-import-sort": "10.0.0",
47
- "eslint-plugin-sonarjs": "1.0.3",
48
- "eslint-plugin-unused-imports": "3.2.0",
49
- "@typescript-eslint/eslint-plugin": "6.19.0",
50
- "@typescript-eslint/parser": "^6.19.0",
51
- "typescript": "~5.4.5",
52
- "typescript-eslint": "^7.16.1"
39
+ "homepage": "https://github.com/jeroenpol/eslint-config",
40
+ "engines": {
41
+ "node": "20"
53
42
  },
54
- "peerDependencies": {
43
+ "dependencies": {
55
44
  "eslint": "8.57.0",
56
45
  "eslint-config-prettier": "9.1.0",
57
46
  "eslint-plugin-functional": "6.5.1",
@@ -64,11 +53,5 @@
64
53
  "@typescript-eslint/parser": "^6.19.0",
65
54
  "typescript": "~5.4.5",
66
55
  "typescript-eslint": "^7.16.1"
67
- },
68
- "engines": {
69
- "node": "20"
70
- },
71
- "dependencies": {
72
- "confusing-browser-globals": "^1.0.11"
73
56
  }
74
57
  }