-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.48 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
48
49
50
51
52
53
{
"name": "@flowfuse/nr-tools-plugin",
"version": "0.3.0",
"description": "A Node-RED plugin that adds FlowFuse platform tools to the editor",
"scripts": {
"build": "rollup -c",
"watch": "rollup --watch -c",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint -c .eslintrc --ext js,html src/**/*.js",
"lint:fix": "eslint -c .eslintrc --ext js,html src/**/*.js --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FlowFuse/nr-tools-plugin.git"
},
"author": "FlowFuse Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/FlowFuse/nr-tools-plugin/issues"
},
"homepage": "https://flowfuse.com/docs/migration/node-red-tools/",
"node-red": {
"plugins": {
"flowfuse-nr-tools": "dist/plugin.js"
}
},
"keywords": [
"flowfuse",
"node-red"
],
"engines": {
"node": ">=16.x"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.1.0",
"cssnano": "^5.1.14",
"eslint": "^8.25.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-html": "7.1.0",
"fast-glob": "^3.2.12",
"rollup": "^3.2.5",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-postcss": "^4.0.2"
},
"files": [
"dist",
"resources"
],
"dependencies": {
"base64url": "^3.0.1",
"undici": "^5.12.0"
}
}