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.
72 lines (71 loc) • 2.1 kB
JSON
{
"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": "1.3.0",
"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": {
"debug": "npx node-gyp build --debug",
"install": "node-gyp-build",
"prepare": "patch-package",
"lint": "eslint .",
"prebuildify": "prebuildify --napi --target 17.0.0 --force --strip --verbose",
"prebuildify-cross": "prebuildify-cross --napi --target 17.0.0 --force --strip --verbose",
"semantic-release": "semantic-release",
"pretest": "npm run rebuild",
"rebuild": "node-gyp rebuild",
"test": "jest"
},
"private": false,
"gypfile": true,
"license": "MIT",
"dependencies": {
"@noble/curves": "^1.4.0",
"bindings": "^1.5.0",
"cbor": "^9.0.2",
"coap": "^1.3.0",
"colors": "^1.4.0",
"node-addon-api": "^8.0.0",
"node-gyp-build": "^4.8.1",
"patch-package": "^8.0.0"
},
"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/elliptic": "^6.4.18",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.4",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"prebuildify": "^6.0.1",
"prebuildify-cross": "^5.1.1",
"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"
}
}