ws2801-client
Version:
A client for the webserver for the WS2801-Pi module.
45 lines (44 loc) • 1.22 kB
JSON
{
"name": "ws2801-client",
"version": "1.0.0",
"description": "A client for the webserver for the WS2801-Pi module.",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"lint": "tslint --project .",
"start": "node dist/index.js",
"test": "c8 mocha dist/tests/*.js --timeout 15000 --exit",
"test:coverage": "npm run test:coverage-check && npm run test:coverage-report",
"test:coverage-check": "c8 check-coverage --lines 70 --functions 70 --branches 70",
"test:coverage-report": "c8 report"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SteffenKn/WS2801-client.git"
},
"keywords": [
"ws2801",
"led",
"ledstrip",
"client"
],
"author": "Steffen Knaup",
"license": "MIT",
"bugs": {
"url": "https://github.com/SteffenKn/WS2801-client/issues"
},
"homepage": "https://github.com/SteffenKn/WS2801-client#readme",
"dependencies": {
"md5": "^2.3.0",
"node-fetch": "2.6.1",
"socket.io-client": "3.0.4"
},
"devDependencies": {
"@types/md5": "2.2.1",
"@types/node": "14.14.16",
"@types/node-fetch": "2.5.7",
"tslint": "6.1.3",
"tslint-eslint-rules": "5.4.0",
"typescript": "4.1.3"
}
}