-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
42 lines (42 loc) · 1.06 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
{
"name": "node-red-contrib-streamdeck",
"version": "1.0.2",
"description": "A Node-RED node to interact with the Elgato Stream Deck products",
"scripts": {
"start": "npm link node-red-contrib-streamdeck && node-red -v -u . examples/streamdeck.json",
"test": "mocha \"test/**/*_spec.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/natcl/node-red-contrib-streamdeck.git"
},
"keywords": [
"node-red",
"elgato",
"streamdeck"
],
"author": "Nathanaël Lécaudé",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/natcl/node-red-contrib-streamdeck/issues"
},
"homepage": "https://github.com/natcl/node-red-contrib-streamdeck#readme",
"dependencies": {
"elgato-stream-deck": "4.1.0",
"jimp": "0.16.1"
},
"optionalDependencies": {
"@julusian/jpeg-turbo": "1.0.1"
},
"devDependencies": {
"mocha": "8.2.1",
"node-red": "1.2.9",
"node-red-node-test-helper": "0.2.6",
"standard": "*"
},
"node-red": {
"nodes": {
"streamdeck": "streamdeck.js"
}
}
}