-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.15 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "node-red-contrib-json-logic",
"author": "doth-j",
"description": "Node-RED node utlizing json-logic rules & operations.",
"license": "Apache-2.0",
"version": "2.0.1",
"repository": {
"type": "git",
"url": "https://github.com/Doth-J/node-red-contrib-json-logic"
},
"keywords": [
"node-red",
"node-inq",
"jsonlogic",
"rules",
"json"
],
"node-red": {
"version": ">=2.0.0",
"nodes": {
"jsonlogic": "nodes/jsonlogic.js",
"jsonlogic_switcher": "nodes/jsonlogic_switcher.js",
"jsonlogic_engine": "nodes/jsonlogic_engine.js"
}
},
"scripts": {
"dev": "nodemon",
"build": "tsc",
"start": "node incubator/server.js",
"dev:build": "nodemon --watch src -e ts --exec npm run build"
},
"devDependencies": {
"@types/node": "^20.2.3",
"@types/node-red": "^1.3.1",
"typescript": "^5.0.4",
"express": "^4.18.2",
"node-red": "^3.1.0",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1"
},
"dependencies": {
"json-logic-engine": "^1.2.5"
},
"engines": {
"node": ">=12.0.0"
}
}