-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.18 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
{
"name": "node-red-contrib-dictionary",
"version": "1.0.1",
"description": "node for node red with dictionary ui",
"main": "dictionary.js",
"repository": {
"type": "git",
"url": "git+https://github.com/itsvinayak/node-red-contrib-dictionary.git"
},
"publisher": "itsvinayak",
"keywords": [
"node-red",
"node-red-node",
"node-red-node-ui",
"node-red-node-ui-dictionary",
"dictionary",
"ui",
"list",
"dropdown"
],
"author": "Vinayak",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"test": "mocha \"test/**/*_spec.js\""
},
"node-red": {
"version": ">=2.0.0",
"nodes": {
"dictionary": "dictionary.js"
}
},
"license": "MIT",
"dependencies": {
"object-path": "^0.11.8"
},
"bugs": {
"url": "https://github.com/itsvinayak/node-red-contrib-dictionary/issues"
},
"homepage": "https://github.com/itsvinayak/node-red-contrib-dictionary#readme",
"devDependencies": {
"mocha": "^10.1.0",
"node-red": "^3.0.2",
"node-red-node-test-helper": "^0.3.0"
}
}