-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·44 lines (44 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
{
"name": "agile-node-red-nodes",
"version": "1.0.0",
"description": "Agile node-red nodes",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Agile-IoT/agile-node-red-nodes.git"
},
"keywords": [
"agile",
"iot",
"node-red",
"nodes"
],
"author": "Luca Capra <[email protected]>",
"license": "EPL-2.0",
"bugs": {
"url": "https://github.com/Agile-IoT/agile-node-red-nodes/issues"
},
"homepage": "https://github.com/Agile-IoT/agile-node-red-nodes#readme",
"node-red": {
"nodes": {
"agile-config-server": "./config/server.js",
"agile-device-read": "./device/read.js",
"agile-device-subscribe": "./device/subscribe.js",
"agile-device-execute": "./device/execute.js",
"agile-device-write": "./device/write.js",
"agile-device-start": "./device/start.js",
"agile-device-stop": "./device/stop.js",
"agile-device-decoder": "./device/decoder.js"
}
},
"dependencies": {
"debug": "^2.2.0",
"q": "^1.4.1",
"swagger-client": "^2.1.16",
"ws": "^1.1.1",
"yamljs": "^0.2.8"
}
}