-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 2.44 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
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "jaysonic",
"version": "3.6.0",
"description": "A feature rich JSON-RPC 1.0/2.0 compliant client and server library",
"repository": {
"type": "git",
"url": "https://github.com/isaacgr/jaysonic"
},
"author": "Isaac Rowell",
"maintainers": [
"Isaac Rowell <[email protected]>"
],
"license": "MIT",
"bugs": "https://github.com/isaacgr/jaysonic/issues",
"engines": {
"node": ">=10.0.0"
},
"keywords": [
"jsonrpc",
"json-rpc",
"rpc",
"json",
"jsonrpc-2.0",
"jsonrpc-1.0",
"middleware",
"connect",
"http",
"https",
"tcp",
"api",
"library",
"ws",
"websocket",
"web",
"socket",
"sockets",
"node",
"javascript",
"js",
"browser",
"web",
"promise",
"promises",
"batch",
"notifications",
"server",
"client",
"handler",
"persistent",
"cli",
"async"
],
"main": "./lib/index.js",
"bin": {
"jaysonic-client": "./bin/client"
},
"scripts": {
"test": "mocha --opts tests/mocha.opts tests/**/*test.js --exit",
"coveralls": "nyc report --reporter=lcov",
"coverage": "nyc npm run test",
"lint": "./node_modules/eslint/bin/eslint.js .",
"lint-fix": "./node_modules/eslint/bin/eslint.js --fix .",
"build-docs": "./node_modules/.bin/jsdoc -r src/ -d ./docs -c jsdoc.json -t ./node_modules/ink-docstrap/template --readme README.md",
"build": "./node_modules/.bin/babel src --out-dir lib",
"prepare": "npm run test && npm run lint-fix && npm run build-docs && npm run build"
},
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/register": "^7.4.4",
"babel-core": "^6.26.3",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babelify": "^10.0.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"chai-spies": "^1.0.0",
"coveralls": "^3.1.0",
"docdash": "^1.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"ink-docstrap": "^1.3.2",
"intercept-stdout": "^0.1.2",
"jsdoc": "^3.6.7",
"jsdom": "15.1.1",
"jsdom-global": "3.0.2",
"mocha": "^6.1.4",
"nyc": "^15.1.0"
},
"dependencies": {
"commander": "^6.1.0",
"ws": "^7.1.0"
}
}