-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.03 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@totallyinformation/node-red-testbed",
"version": "1.0.1",
"description": "A blank canvas to test out ideas for Node-RED custom nodes",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@types/jquery": "^3.5.25",
"@types/jqueryui": "^1.12.19",
"eslint": "^8.31.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-es": "^4.1.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^46.4.2",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-sonarjs": "^0",
"gulp": "^4.0.2",
"gulp-htmlmin": "^5.0.1",
"gulp-include": "^2.4.1",
"gulp-once": "^2.1.1",
"gulp-rename": "^2.0.0"
},
"maybedevDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^14.18.29",
"@types/node-red": "^1.3.3",
"gulp-clean-css": "^4.3.0",
"gulp-debug": "^4.0.0",
"gulp-esbuild": "^0.11.1",
"gulp-json-editor": "^2.5.6",
"gulp-prompt": "^1.2.0",
"gulp-replace": "^1.1.3",
"gulp-uglify": "^3.0.2"
},
"node-red": {
"version": ">=3",
"nodes": {
"ti-dummy": "nodes/ti-dummy/customNode.js"
}
},
"engines": {
"node": ">=14"
},
"directories": {
"example": "./examples",
"doc": "./docs",
"lib": "./nodes"
},
"main": "./nodes/ti-dummy/customNode.js",
"browser": "",
"style": "",
"types": "index.d.ts",
"type": "commonjs",
"browserslist": [
"> 0.5%",
"maintained node versions",
"last 2 versions",
"not dead",
"not ie > 0"
],
"keywords": [
"node-red"
],
"homepage": "https://totallyinformation.github.io/node-red-testbed/#/",
"bugs": "https://github.com/TotallyInformation/node-red-testbed/issues",
"author": {
"name": "Julian Knight (TotallyInformation)",
"url": "https://github.com/TotallyInformation"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/TotallyInformation/node-red-contrib-testbed"
}
}