-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
46 lines (46 loc) · 1.1 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
{
"name": "node-red-contrib-amazon-echo",
"version": "0.1.11",
"description": "Alexa controlled Node-Red nodes supporting latest Amazon Echo devices",
"main": "index.js",
"homepage": "https://github.com/datech/node-red-contrib-amazon-echo",
"repository": {
"type": "git",
"url": "git+https://github.com/datech/node-red-contrib-amazon-echo.git"
},
"scripts": {
"test": "mocha \"test/**/index.js\""
},
"keywords": [
"node-red",
"amazon",
"echo",
"alexa",
"phillips",
"hue",
"emulator"
],
"author": "Teodor Ivanov <[email protected]>",
"license": "MIT",
"node-red": {
"nodes": {
"amazon-echo-device": "nodes/amazon-echo-device.js",
"amazon-echo-hub": "nodes/amazon-echo-hub.js"
}
},
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.4",
"hue-colors": "^0.5.3",
"ip": "^2.0.1",
"mustache": "^4.2.0",
"node-persist": "^4.0.1",
"node-ssdp": "^4.0.0",
"stoppable": "^1.0.4"
},
"devDependencies": {
"mocha": "^10.4.0",
"node-red-node-test-helper": "^0.3.3",
"should": "^13.2.3"
}
}