dmx-flok/package.json

36 lines
808 B
JSON
Raw Normal View History

{
"name": "@node-dmx/dmx-web",
"version": "1.0.0",
"author": "Sebastian Wiedenroth <wiedi@frubar.net>",
"description": "DMX webservice and web ui powered by node-dmx",
"url": "https://github.com/node-dmx/node-dmx-web",
"bin": {
"dmx-web": "./dmx-web.js"
},
"scripts": {
"test": "node_modules/eslint/bin/eslint.js -c .eslintrc .; exit 0"
},
"repository": {
"type": "git",
"url": "https://github.com/node-dmx/node-dmx-web.git"
},
"keywords": [
"DMX",
"light control"
],
"dependencies": {
"@node-dmx/dmx-library": "^0.2.0",
"commander": "^2.12.2",
"express": "^4.16.2",
"socket.io": "^2.0.4"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.0.1"
},
"license": "MIT",
"engines": {
"node": ">=10.0.0"
}
2016-06-06 19:56:46 +00:00
}