-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.07 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
{
"name": "@flowfuse/flow-renderer",
"version": "0.4.1",
"description": "Node-RED flow renderer",
"main": "index.js",
"scripts": {
"demo": "npx http-server -p 8080 -c-1 -o demo.html",
"build": "npx terser index.js --compress --mangle --output index.min.js",
"publish": "npm run build && npm publish",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"node-red",
"FlowFuse",
"flow-based-programming",
"visual-programming",
"low-code"
],
"repository": {
"type": "git",
"url": "git+https://github.com/FlowFuse/flow-renderer.git"
},
"bugs": {
"url": "https://github.com/FlowFuse/flow-renderer/issues"
},
"homepage": "https://github.com/FlowFuse/flow-renderer#readme",
"author": {
"name": "FlowFuse Inc."
},
"license": "Apache-2.0",
"engines": {
"node": ">=16.x"
},
"files": [
"index.js",
"index.min.js",
"package.json",
"LICENSE",
"README.md"
]
}