jsonrpc-dispatch
Version:
An unopinionated JSONRPC dispatcher for JavaScript
47 lines (46 loc) • 1.22 kB
JSON
{
"name": "jsonrpc-dispatch",
"version": "2.3.0",
"description": "An unopinionated JSONRPC dispatcher for JavaScript",
"main": "lib/src/index.js",
"scripts": {
"build": "npm run clean && npm run test && npm run lint-js && npm run build-es5",
"build-es5": "babel src --out-dir lib/src",
"clean": "rm -rf dist lib",
"test": "npm run lint-js && mocha --compilers js:babel-core/register test",
"lint-js": "eslint src/* test/*",
"prepublish": "npm run build"
},
"keywords": [
"JSONRPC",
"Cerner"
],
"files": [
"lib"
],
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.13.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"chai": "3.5.0",
"eslint": "^2.11.1",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-plugin-import": "^1.8.1",
"mocha": "2.4.5"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"uuid": "^3.0.0"
},
"engines": {
"node": ">= 6.0"
},
"author": "Cerner Corporation",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/cerner/jsonrpc-dispatch.git"
}
}