UNPKG

dmx-ts

Version:
61 lines (60 loc) 1.29 kB
{ "name": "dmx-ts", "version": "0.4.0", "author": "Sebastian Wiedenroth <wiedi@frubar.net>", "description": "A nodejs DMX library", "url": "https://github.com/node-dmx/dmx-ts", "main": "dist/src/index.js", "scripts": { "test": "npm run jest", "lint": "npx eslint . -c .eslintrc --ext .ts", "jest": "jest", "build": "tsc", "prepack": "npm run build" }, "repository": { "type": "git", "url": "https://github.com/node-dmx/dmx-ts.git" }, "files": [ "dist" ], "keywords": [ "DMX", "light control", "typescript" ], "dependencies": { "dmxnet": "^0.9.0", "sacn": "^4.4.0", "serialport": "^12.0.0", "socket.io": "^4.7.4" }, "devDependencies": { "@types/jest": "^29.5.12", "@types/node": "^20.11.16", "@typescript-eslint/eslint-plugin": "^6.21.0", "@typescript-eslint/parser": "^6.21.0", "eslint": "^8.56.0", "jest": "^29.7.0", "ts-loader": "^9.5.1", "typescript": "^5.3.3" }, "license": "MIT", "engines": { "node": ">=10.0.0" }, "jest": { "clearMocks": true, "collectCoverage": true, "coverageDirectory": "coverage", "coverageReporters": [ "lcov", "text" ], "roots": [ "dist/" ], "testEnvironment": "node" } }