Skip to content

Commit bc7276e

Browse files
authored
Merge pull request #385 from chris-pardy/just-json-path
Upgrade JSON-Path-Plus
2 parents bc36efa + c26e19a commit bc7276e

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
strategy:
1616
matrix:
17-
node-version: [14.x, 16.x, 18.x]
17+
node-version: [18.x, 20.x, 22.x]
1818

1919
steps:
2020
- uses: actions/checkout@v2

.github/workflows/node.js.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
strategy:
1616
matrix:
17-
node-version: [14.x, 16.x, 18.x]
17+
node-version: [18.x, 20.x, 22.x]
1818

1919
steps:
2020
- uses: actions/checkout@v2

package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
"description": "Rules Engine expressed in simple json",
55
"main": "dist/index.js",
66
"types": "types/index.d.ts",
7+
"engines": {
8+
"node": ">=18.0.0"
9+
},
710
"scripts": {
811
"test": "mocha && npm run lint --silent && npm run test:types",
912
"test:types": "tsd",
@@ -92,6 +95,6 @@
9295
"clone": "^2.1.2",
9396
"eventemitter2": "^6.4.4",
9497
"hash-it": "^6.0.0",
95-
"jsonpath-plus": "^7.2.0"
98+
"jsonpath-plus": "^10.0.0"
9699
}
97100
}

0 commit comments

Comments
 (0)