UNPKG

modular-json-rpc

Version:

Modular JSON-RPC 2.0 library that allows easy addition of transports

67 lines (66 loc) 1.41 kB
{ "name": "modular-json-rpc", "version": "1.0.6", "description": "Modular JSON-RPC 2.0 library that allows easy addition of transports", "keywords": [ "jsonrpc", "json-rpc", "bidirectional", "json", "rpc", "ws", "websocket" ], "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "tsc", "test": "mocha -r ts-node/register lib/*.spec.ts", "cover": "nyc npm test" }, "nyc": { "include": [ "lib/**/*.ts", "src/**/*.tsx" ], "extension": [ ".ts", ".tsx" ], "require": [ "ts-node/register" ], "reporter": [ "text-summary", "html", "lcov" ], "sourceMap": true, "instrument": true }, "repository": { "type": "git", "url": "git+https://github.com/chemicstry/modular-json-rpc.git" }, "author": "chemicstry <chemicstry@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/chemicstry/modular-json-rpc/issues" }, "homepage": "https://github.com/chemicstry/modular-json-rpc#readme", "devDependencies": { "@types/chai": "^4.1.2", "@types/mocha": "^5.0.0", "@types/ws": "^4.0.1", "chai": "^4.1.2", "coveralls": "^3.0.0", "istanbul": "^0.4.5", "mocha": "^5.0.5", "nyc": "^11.6.0", "ts-node": "^5.0.1", "typescript": "^2.7.2" }, "dependencies": { "ws": "^5.1.0" } }