-
Notifications
You must be signed in to change notification settings - Fork 113
/
package.json
86 lines (86 loc) · 2.41 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
86
{
"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"
}
}