UNPKG

node-noise

Version:
69 lines 1.89 kB
{ "name": "node-noise", "version": "0.0.10", "main": "lib/index.js", "types": "lib/index.d.ts", "scripts": { "build": "tsc --outDir lib", "lint:test": "eslint ./src/**/*.ts", "lint:fix": "eslint --fix ./src/**/*.ts", "test": "yarn test:node && yarn test:browser", "test:node": "jest --ci --config jest.config.js", "test:browser": "jest --ci --config jest-browser.config.js --env=./test/browser-env.js" }, "files": [ "LICENSE", "lib" ], "repository": { "type": "git", "url": "git+https://github.com/jc-lab/node-noise.git" }, "author": { "name": "Joseph Lee", "email": "joseph@jc-lab.net" }, "license": "Apache-2.0", "bugs": { "url": "https://github.com/jc-lab/node-noise/issues" }, "homepage": "https://github.com/jc-lab/node-noise#readme", "description": "", "dependencies": { "@stablelib/chacha20poly1305": "^1.0.1", "@stablelib/hkdf": "^1.0.1", "@stablelib/sha256": "^1.0.1", "@stablelib/x25519": "^1.0.3", "debug": "^4.3.4", "duplexify": "^4.1.2" }, "devDependencies": { "@types/debug": "^4.1.7", "@types/duplexify": "^3.6.1", "@types/jest": "^29.2.6", "@types/node": "^18.11.18", "@typescript-eslint/eslint-plugin": "^5.3.1", "@typescript-eslint/parser": "^5.3.1", "babel-jest": "^29.3.1", "buffer": "^6.0.3", "eslint": "^7.0.0", "eslint-plugin-import": "^2.25.3", "eslint-plugin-node": "^11.1.0", "eslint-plugin-promise": "^5.1.1", "eslint-plugin-standard": "^5.0.0", "inherit": "^2.2.7", "jest": "^29.3.1", "jest-environment-jsdom": "^29.4.3", "jest-expect-message": "^1.1.3", "ts-jest": "^29.0.5", "ts-loader": "^9.4.2", "tsc": "^2.0.4", "typescript": "^4.9.4", "webpack": "^5.75.0" }, "packageManager": "yarn@3.4.1", "keywords": [ "noise", "noise-protocol" ] }