UNPKG

2.26 kBJSONView Raw
1{
2 "name": "jayson",
3 "version": "3.0.1",
4 "description": "JSON-RPC 1.0/2.0 compliant server and client",
5 "license": "MIT",
6 "keywords": [
7 "jsonrpc",
8 "json-rpc",
9 "rpc",
10 "json",
11 "jsonrpc-2.0",
12 "jsonrpc-1.0",
13 "middleware",
14 "connect",
15 "express",
16 "fork",
17 "distributed",
18 "relay",
19 "http",
20 "tcp",
21 "https",
22 "tls",
23 "api"
24 ],
25 "author": "Tedde Lundgren <mail@tedeh.net> (http://tedeh.net)",
26 "maintainers": "Tedde Lundgren <mail@tedeh.net> (http://tedeh.net)",
27 "bin": "./bin/jayson.js",
28 "repository": {
29 "type": "git",
30 "url": "git://github.com/tedeh/jayson.git"
31 },
32 "homepage": "https://jayson.tedeh.net",
33 "bugs": "https://github.com/tedeh/jayson/issues",
34 "contributors": [
35 "Tedde Lundgren <mail@tedeh.net> (http://tedeh.net)",
36 "Daniel Vicory <dvicory@gmail.com> (http://bzfx.net)",
37 "Jonathan Liu <net147@gmail.com>"
38 ],
39 "scripts": {
40 "test": "mocha",
41 "test-ci": "mocha -w -R min",
42 "coverage": "nyc mocha",
43 "docs": "jsdoc -t node_modules/ink-docstrap/template -R README.md -c ./jsdoc.conf.json",
44 "docs_clear": "rm -rf ./docs/jayson/*; exit 0",
45 "docs_refresh": "npm run docs_clear && npm run docs",
46 "docs_deploy": "rsync --delete -r docs/jayson/* tedeh.net:/var/www/jayson.tedeh.net; exit 0",
47 "lint": "jshint lib/*.js lib/**/*.js promise/*.js promise/**/*.js; exit 0"
48 },
49 "config": {
50 "blanket": {
51 "pattern": "lib",
52 "data-cover-never": [
53 "node_modules",
54 "public"
55 ],
56 "data-cover-reporter-options": {
57 "shortnames": false
58 }
59 }
60 },
61 "dependencies": {
62 "@types/node": "^10.3.5",
63 "JSONStream": "^1.3.1",
64 "commander": "^2.12.2",
65 "es6-promisify": "^5.0.0",
66 "eyes": "^0.1.8",
67 "json-stringify-safe": "^5.0.1",
68 "lodash": "^4.17.11",
69 "uuid": "^3.2.1"
70 },
71 "devDependencies": {
72 "body-parser": "^1.18.2",
73 "connect": "^3.6.5",
74 "es6-promise": "^4.1.1",
75 "express": "^4.16.4",
76 "ink-docstrap": "^1.3.2",
77 "jsdoc": "^3.5.5",
78 "jshint": "^2.10.1",
79 "marked": "0.3.9",
80 "mocha": "^4.0.1",
81 "node-fetch": "^2.1.2",
82 "nyc": "^13.2.0",
83 "pass-stream": "^1.0.0",
84 "should": "^13.1.3",
85 "superagent": "^3.8.3"
86 }
87}