UNPKG

edhoc

Version:

A Node.js implementation of EDHOC (Ephemeral Diffie-Hellman Over COSE) protocol for lightweight authenticated key exchange in IoT and other constrained environments.

58 lines (57 loc) 1.55 kB
{ "name": "edhoc", "description": "A Node.js implementation of EDHOC (Ephemeral Diffie-Hellman Over COSE) protocol for lightweight authenticated key exchange in IoT and other constrained environments.", "version": "2.1.1", "main": "dist/index.js", "types": "dist/index.d.ts", "author": "Marek Serafin <marek@serafin.email>", "repository": { "type": "git", "url": "https://github.com/stoprocent/node-edhoc.git" }, "homepage": "https://github.com/stoprocent/node-edhoc", "keywords": [ "edhoc", "cose", "iot", "constrained", "authentication", "key exchange", "coap" ], "scripts": { "build": "tsc", "lint": "eslint .", "semantic-release": "semantic-release", "pretest": "npm run build", "test": "jest" }, "private": false, "license": "MIT", "dependencies": { "@noble/curves": "^1.4.0", "@noble/hashes": "^1.4.0", "cbor": "^9.0.2" }, "devDependencies": { "@commitlint/cli": "^19.3.0", "@commitlint/config-conventional": "^19.2.2", "@eslint/js": "^9.7.0", "@semantic-release/changelog": "^6.0.3", "@semantic-release/exec": "^6.0.3", "@semantic-release/git": "^10.0.1", "@semantic-release/github": "^10.1.1", "@types/jest": "^29.5.14", "@types/node": "^22.13.4", "eslint": "^8.57.0", "jest": "^29.7.0", "semantic-release": "^24.0.0", "ts-jest": "^29.2.5", "typescript": "^5.5.4", "typescript-eslint": "^7.17.0" }, "jest": { "preset": "ts-jest", "testEnvironment": "node" } }