UNPKG

coap

Version:

A CoAP library for node modelled after 'http'

78 lines (77 loc) 1.94 kB
{ "name": "coap", "version": "1.4.2", "description": "A CoAP library for node modelled after 'http'", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "tsc -b", "pretest": "npm run build", "prepublishOnly": "npm run build", "test": "mocha ./dist/test --exit", "coverage": "c8 -a --reporter=lcov --reporter=text --reporter=html npm run test", "lint": "eslint *.ts", "lint:fix": "eslint *.ts --fix" }, "repository": { "type": "git", "url": "https://github.com/coapjs/node-coap.git" }, "keywords": [ "coap", "m2m", "iot", "client", "server", "udp", "observe", "internet of things", "messaging" ], "author": "Matteo Collina <hello@matteocollina.com>", "license": "MIT", "devDependencies": { "@types/capitalize": "^2.0.2", "@types/chai": "^4.3.16", "@types/debug": "^4.1.12", "@types/mocha": "^10.0.6", "@types/node": "^20.14.6", "@types/sinon": "^17.0.3", "@typescript-eslint/eslint-plugin": "^6.4.0", "@typescript-eslint/parser": "^6.0.0", "chai": "^4.4.1", "eslint": "^8.56.0", "eslint-config-standard-with-typescript": "^40.0.0", "eslint-plugin-import": "^2.29.1", "eslint-plugin-n": "^16.0.0", "eslint-plugin-promise": "^6.2.0", "mocha": "^10.4.0", "c8": "^10.1.2", "sinon": "^18.0.0", "source-map-support": "^0.5.21", "timekeeper": "^2.3.1", "ts-node": "^10.9.2", "typescript": "^5.4.5" }, "dependencies": { "bl": "^6.0.12", "@types/readable-stream": "^4.0.14", "capitalize": "^2.0.4", "coap-packet": "^1.1.1", "debug": "^4.3.5", "fastseries": "^2.0.0", "lru-cache": "^11.0.2", "readable-stream": "^4.5.2" }, "engines": { "node": ">=18" }, "files": [ "dist/index.d.ts", "dist/index.js", "dist/index.js.map", "dist/models", "dist/lib", "examples/" ] }