forked from tedeh/jayson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.15 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "jayson",
"version": "2.0.6",
"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 <[email protected]> (http://tedeh.net)",
"maintainers": "Tedde Lundgren <[email protected]> (http://tedeh.net)",
"bin": "./bin/jayson.js",
"repository": {
"type": "git",
"url": "git://github.com/tedeh/jayson.git"
},
"homepage": "http://jayson.tedeh.net",
"bugs": "https://github.com/tedeh/jayson/issues",
"main": "index",
"contributors": [
"Tedde Lundgren <[email protected]> (http://tedeh.net)",
"Daniel Vicory <[email protected]> (http://bzfx.net)",
"Jonathan Liu <[email protected]>"
],
"scripts": {
"test": "mocha",
"test-ci": "mocha -w -R min",
"coverage": "istanbul cover _mocha",
"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:/var/www/jayson; exit 0",
"lint": "jshint lib/*.js lib/**/*.js promise/*.js promise/**/*.js; exit 0"
},
"config": {
"blanket": {
"pattern": "lib",
"data-cover-never": [
"node_modules",
"public"
],
"data-cover-reporter-options": {
"shortnames": false
}
}
},
"dependencies": {
"JSONStream": "^1.3.1",
"commander": "^2.12.2",
"es6-promisify": "^5.0.0",
"eyes": "^0.1.8",
"json-stringify-safe": "^5.0.1",
"lodash": "^4.17.4",
"uuid": "^3.2.1"
},
"devDependencies": {
"body-parser": "^1.18.2",
"connect": "^3.6.5",
"es6-promise": "^4.1.1",
"ink-docstrap": "^1.3.2",
"istanbul": "^0.4.5",
"jsdoc": "^3.5.5",
"jshint": "2.9.1",
"marked": "0.3.9",
"mocha": "^4.0.1",
"node-fetch": "^2.1.2",
"pass-stream": "^1.0.0",
"should": "^13.1.3"
}
}