UNPKG

jayson

Version:

JSON-RPC 1.0/2.0 compliant server and client

87 lines (86 loc) 2.47 kB
{ "name": "jayson", "version": "4.1.3", "description": "JSON-RPC 1.0/2.0 compliant server and client", "license": "MIT", "keywords": [ "jsonrpc", "json-rpc", "rpc", "json", "jsonrpc-2.0", "jsonrpc-1.0", "middleware", "connect", "express", "fork", "distributed", "relay", "http", "tcp", "https", "tls", "api" ], "author": "Tedde Lundgren <mail@tedeh.net> (https://tedeh.net)", "maintainers": "Tedde Lundgren <mail@tedeh.net> (https://tedeh.net)", "bin": "./bin/jayson.js", "repository": { "type": "git", "url": "git://github.com/tedeh/jayson.git" }, "homepage": "https://jayson.tedeh.net", "bugs": "https://github.com/tedeh/jayson/issues", "contributors": [ "Tedde Lundgren <mail@tedeh.net> (https://tedeh.net)", "Daniel Vicory <dvicory@gmail.com> (http://bzfx.net)", "Jonathan Liu <net147@gmail.com>" ], "scripts": { "test": "mocha", "test-ci": "mocha -w -R min", "test-tsc": "tsc --strict --lib es6 --esModuleInterop typescript/test.ts", "coverage": "nyc mocha", "coveralls": "mocha && nyc report --reporter=text-lcov | coveralls", "docs": "jsdoc -t node_modules/ink-docstrap/template -R README.md -c ./jsdoc.conf.json", "docs_clear": "rm -rf ./docs/jayson/*; exit 0", "docs_refresh": "npm run docs_clear && npm run docs", "docs_deploy": "rsync --delete -r docs/jayson/* tedeh.net:/var/www/jayson.tedeh.net; exit 0", "lint": "jshint lib/*.js lib/**/*.js promise/*.js promise/**/*.js; exit 0" }, "dependencies": { "@types/connect": "^3.4.33", "@types/node": "^12.12.54", "@types/ws": "^7.4.4", "commander": "^2.20.3", "delay": "^5.0.0", "es6-promisify": "^5.0.0", "eyes": "^0.1.8", "isomorphic-ws": "^4.0.1", "json-stringify-safe": "^5.0.1", "JSONStream": "^1.3.5", "uuid": "^8.3.2", "ws": "^7.5.10" }, "devDependencies": { "@types/express-serve-static-core": "^4.17.30", "body-parser": "^1.19.0", "connect": "^3.7.0", "coveralls": "^3.1.0", "es6-promise": "^4.2.8", "express": "^4.17.1", "ink-docstrap": "github:docstrap/docstrap#pull/345/head", "jsdoc": "^4.0.2", "jshint": "^2.12.0", "mocha": "^10.2.0", "node-fetch": "^2.6.7", "nyc": "^14.1.1", "pass-stream": "^1.0.0", "should": "^13.2.3", "superagent": "^3.8.3", "typescript": "^4.7.4" }, "engines": { "node": ">=8" } }