forked from tedeh/jayson
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.13 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.13 KB
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
{
"name": "jayson",
"version": "2.0.2",
"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> (http://tedeh.net)",
"maintainers": "Tedde Lundgren <mail@tedeh.net> (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 <mail@tedeh.net> (http://tedeh.net)",
"Daniel Vicory <dvicory@gmail.com> (http://bzfx.net)",
"Jonathan Liu <net147@gmail.com>"
],
"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/* oceandatorn:~/shared/nginx/domains/jayson.tedeh.net; exit 0",
"lint": "jshint -c .jshintrc -c .jshintrc lib/*.js lib/**/*.js examples/**/*.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.0.3",
"commander": "1.3.2",
"eyes": "0.1.8",
"json-stringify-safe": "5.0.1",
"lodash": "3.6.0",
"es6-promisify": "3.0.0"
},
"devDependencies": {
"connect": "2.15.0",
"es6-promise": "3.0.2",
"ink-docstrap": "1.1.4",
"istanbul": "0.4.3",
"jsdoc": "3.4.0",
"jshint": "2.9.1",
"mocha": "2.1.0",
"pass-stream": "0.1.3",
"should": "8.2.1",
"uglify-js": "2.4.13"
}
}