-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.21 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "@tbrandenburg/node-red-cli",
"version": "0.2.18",
"description": "Call existing Node-RED flows from Node.js and the command line",
"main": "src/link-call.js",
"bin": {
"node-red-cli": "bin/node-red-cli.js"
},
"files": [
"bin",
"src",
"README.md",
"LICENSE"
],
"scripts": {
"test": "node --test",
"lint": "eslint .",
"format": "prettier --check .",
"format:write": "prettier --write .",
"prepublishOnly": "make ci"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tbrandenburg/node-red-cli.git"
},
"homepage": "https://github.com/tbrandenburg/node-red-cli#readme",
"bugs": {
"url": "https://github.com/tbrandenburg/node-red-cli/issues"
},
"author": "Tom Brandenburg",
"keywords": [
"node-red",
"cli",
"link-in",
"link-out",
"automation",
"workflow",
"flow"
],
"license": "MIT",
"engines": {
"node": ">=24"
},
"dependencies": {
"commander": "^15.0.0",
"node-red": "5.0.7"
},
"overrides": {
"qs": "6.16.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.9.1",
"prettier": "^3.9.6"
}
}