forked from node-dmx/dmx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (38 loc) · 898 Bytes
/
package.json
File metadata and controls
39 lines (38 loc) · 898 Bytes
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
{
"name": "node-dmx",
"version": "0.2.5",
"author": "Sebastian Wiedenroth <wiedi@frubar.net>",
"description": "A nodejs DMX library",
"url": "https://github.com/darrenplace/node-dmx",
"scripts": {
"start": "node poc.js",
"viz": "node poc.js --artnet",
"test": "concurrently 'npm run eslint' 'npm run jest'",
"eslint": "node_modules/eslint/bin/eslint.js -c .eslintrc .",
"jest": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/darrenplace/node-dmx.git"
},
"keywords": [
"DMX",
"light control"
],
"dependencies": {
"sacn": "^3.2.1",
"serialport": "^8.0.5",
"socket.io": "^2.3.0",
"yargs": "^17.4.1"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"concurrently": "^4.1.0",
"eslint": "^5.0.1",
"jest": "^24.1.0"
},
"license": "MIT",
"engines": {
"node": ">=10.0.0"
}
}