@koffeine/eslint-config 30.0.0 → 30.1.0

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 +2 -2
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -26,7 +26,7 @@ npm info @koffeine/eslint-config peerDependencies
26
26
  For example:
27
27
 
28
28
  ```sh
29
- npm install eslint@8.38.0 --save-dev --save-exact
29
+ npm install eslint@8.39.0 --save-dev --save-exact
30
30
  ```
31
31
 
32
32
  ## Usage
@@ -37,7 +37,7 @@ Add the following to your eslint.config.js file:
37
37
  import koffeine from '@koffeine/eslint-config';
38
38
 
39
39
  export default [
40
- koffeine
40
+ koffeine
41
41
  ];
42
42
  ```
43
43
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@koffeine/eslint-config",
3
- "version": "30.0.0",
3
+ "version": "30.1.0",
4
4
  "description": "Koffeine's ESLint shareable config",
5
5
  "keywords": [
6
6
  "eslint",
@@ -22,7 +22,7 @@
22
22
  "url": "git+https://github.com/koffeine/eslint-config.git"
23
23
  },
24
24
  "scripts": {
25
- "test": "eslint src test && tsc -p jsconfig.json && node test/index.js src/index.js",
25
+ "test": "eslint . && tsc -p jsconfig.json && node test/index.js src/index.js",
26
26
  "build": "esbuild --minify --outfile=index.js src/index.js",
27
27
  "prepublishOnly": "npm test && npm run build",
28
28
  "postpublish": "rm index.js"
@@ -31,11 +31,11 @@
31
31
  "@types/eslint": "^8",
32
32
  "@types/node": "^18",
33
33
  "esbuild": "^0",
34
- "eslint": "8.38.0",
34
+ "eslint": "8.39.0",
35
35
  "globals": "^13",
36
36
  "typescript": "^5"
37
37
  },
38
38
  "peerDependencies": {
39
- "eslint": "8.38.0"
39
+ "eslint": "8.39.0"
40
40
  }
41
41
  }