UNPKG

node-coap-client

Version:

Clientside implementation of the CoAP protocol with DTLS support.

98 lines (97 loc) 2.33 kB
{ "name": "node-coap-client", "version": "2.1.0", "description": "Clientside implementation of the CoAP protocol with DTLS support.", "keywords": [ "coap", "coaps", "dtls", "iot", "tradfri" ], "main": "./build/CoapClient.js", "types": "./build/CoapClient.d.ts", "author": { "name": "AlCalzone", "email": "d.griesel@gmx.net" }, "contributors": [ "chrisEff (https://github.com/chrisEff)" ], "license": "MIT", "homepage": "https://github.com/AlCalzone/node-coap-client", "devDependencies": { "@alcalzone/release-script": "~3.5.9", "@alcalzone/release-script-plugin-license": "~3.5.9", "@types/chai": "^4.3.3", "@types/chai-as-promised": "^7.1.5", "@types/debug": "4.1.7", "@types/mocha": "^9.1.1", "@types/node": "^16.11.26", "@types/yargs": "^17.0.12", "chai": "^4.3.6", "chai-as-promised": "^7.1.1", "coveralls": "^3.1.1", "mocha": "^9.2.2", "nyc": "^15.1.0", "proxyquire": "^2.1.0", "rimraf": "^3.0.0", "semver": "^7.3.7", "sinon": "^13.0.2", "sinon-chai": "^3.7.0", "source-map-support": "^0.5.21", "ts-node": "^10.9.1", "tslint": "^6.1.3", "typescript": "^4.8.4", "yargs": "^17.5.1" }, "repository": { "type": "git", "url": "git+https://github.com/AlCalzone/node-coap-client.git" }, "dependencies": { "debug": "^4.3.4", "node-dtls-client": "^1.1.1" }, "engines": { "node": ">=12" }, "scripts": { "build": "tsc", "prebuild": "rimraf ./build", "watch": "tsc --watch", "test:ts": "mocha src/**/*.test.ts", "test": "npm run test:ts", "coverage": "nyc npm test", "coveralls": "nyc report --reporter=text-lcov | coveralls -v", "show-coverage": "npm run coverage && start ./coverage/index.html", "lint:ts": "tslint", "lint": "npm run lint:ts \"src/**/*.ts\"", "release": "release-script" }, "nyc": { "all": true, "include": [ "src/**/*.ts" ], "exclude": [ "build/**", "src/**/*.test.ts" ], "extension": [ ".ts" ], "require": [ "ts-node/register", "source-map-support/register" ], "reporter": [ "text-summary", "html", "lcov" ], "sourceMap": true, "instrument": true }, "readme": "README.md" }