-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.42 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.42 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
{
"name": "@flowfuse/flow-renderer",
"version": "0.5.0",
"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",
"lint": "eslint index.js"
},
"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"
],
"devDependencies": {
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-html": "^8.1.3",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-promise": "^6.6.0"
}
}