@hs-web-team/eslint-config-node 0.2.3 → 0.3.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.
@@ -11,7 +11,7 @@ jobs:
11
11
  runs-on: ubuntu-latest
12
12
  strategy:
13
13
  matrix:
14
- node: [ 14, 16, 18 ]
14
+ node: [ 18, 20 ]
15
15
 
16
16
  name: Node ${{ matrix.node }} sample
17
17
  steps:
@@ -1,7 +1,7 @@
1
1
  name: Pull Request
2
2
 
3
3
  on:
4
- push:
4
+ pull_request:
5
5
  branches: [ main ]
6
6
  workflow_dispatch:
7
7
 
@@ -11,7 +11,7 @@ jobs:
11
11
  runs-on: ubuntu-latest
12
12
  strategy:
13
13
  matrix:
14
- node: [ 14, 16, 18 ]
14
+ node: [ 18, 20 ]
15
15
 
16
16
  name: Node ${{ matrix.node }} sample
17
17
  steps:
@@ -10,7 +10,7 @@ jobs:
10
10
  - uses: actions/checkout@v3
11
11
  - uses: actions/setup-node@v3
12
12
  with:
13
- node-version: 18
13
+ node-version: 20
14
14
  registry-url: 'https://registry.npmjs.org'
15
15
  - run: npm install
16
16
  - run: npm publish
package/package.json CHANGED
@@ -1,12 +1,15 @@
1
1
  {
2
2
  "name": "@hs-web-team/eslint-config-node",
3
- "version": "0.2.3",
3
+ "version": "0.3.0",
4
4
  "description": "HubSpot Marketing WebTeam ESLint rules for Node.js",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
7
  "lint": "npx eslint -c ./index.js *.js --fix",
8
8
  "test": "echo \"Error: no test specified\" && exit 1"
9
9
  },
10
+ "engines": {
11
+ "node": ">=18"
12
+ },
10
13
  "repository": {
11
14
  "type": "git",
12
15
  "url": "git+https://github.com/HubSpotWebTeam/wt-eslint-node.git"
@@ -21,8 +24,8 @@
21
24
  },
22
25
  "homepage": "https://github.com/HubSpotWebTeam/wt-eslint-node#readme",
23
26
  "dependencies": {
24
- "eslint": "^8.34.0",
27
+ "eslint": "^8.55.0",
25
28
  "eslint-config-airbnb-base": "^15.0.0",
26
- "eslint-plugin-import": "^2.27.5"
29
+ "eslint-plugin-import": "^2.29.0"
27
30
  }
28
31
  }