-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
93 lines (93 loc) · 3.21 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
{
"name": "jsonrpc-bidirectional",
"description": "Bidirectional JSONRPC over web sockets or HTTP with extensive plugin support.",
"version": "10.0.11",
"scripts": {
"build": "node --experimental-worker build.js",
"prepublish": "node --experimental-worker build.js && node --expose-gc --max-old-space-size=1024 --experimental-worker tests/main.js",
"test": "node test.js",
"test_lib": "node --expose-gc --max-old-space-size=1024 --experimental-worker tests/main.js",
"test_rtc": "node --expose-gc --max-old-space-size=1024 --experimental-worker tests/BrowserWebRTC/main_server.js",
"test_cluster": "node --expose-gc --max-old-space-size=1024 --experimental-worker tests/main_NodeClusterBase.js",
"test_worker_threads": "node --expose-gc --max-old-space-size=1024 --experimental-worker tests/main_NodeWorkerThreadsBase.js",
"benchmark": "node --expose-gc --max-old-space-size=1024 --experimental-worker tests/benchmark.js",
"benchmark_endless_new_websockets": "node --expose-gc --max-old-space-size=1024 --experimental-worker tests/benchmark_endless_new_websockets.js",
"lint": "eslint src tests --quiet"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bigstepinc/jsonrpc-bidirectional.git"
},
"homepage": "https://github.com/bigstepinc/jsonrpc-bidirectional",
"author": "Ionut Stan <Ionut.Stan@bigstep.com>",
"license": "MIT",
"contributors": [
{
"name": "Ionut Stan",
"email": "Ionut.Stan@bigstep.com"
},
{
"name": "Ionut Stan",
"email": "oxygenus@gmail.com"
}
],
"preferGlobal": false,
"engines": {
"node": ">=10.15.3"
},
"browser": {
"child_process": false
},
"dependencies": {
"extendable-error-class": "^0.1.1",
"fs-extra": "^7.0.0",
"node-fetch": "^2.2.0",
"sleep-promise": "^2.0.0"
},
"optionalDependencies": {
"babel-polyfill": "^6.23.0",
"babel-runtime": "^6.23.0",
"es6-promise": "^4.1.0",
"jssha": "^2.2.0",
"node-forge": "^0.7.1",
"typescript-parser": "^2.6.1",
"whatwg-fetch": "^2.0.3",
"ws": "^5.1.1"
},
"devDependencies": {
"@types/node": "^7.0.52",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.2",
"babel-loader": "^6.4.1",
"babel-minify-webpack-plugin": "^0.3.1",
"babel-plugin-async-to-promises": "^1.0.5",
"babel-plugin-remove-comments": "^2.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"chalk": "^2.4.1",
"electron": "^1.7.9",
"eslint": "^6.7.2",
"eslint-plugin-jsdoc": "^18.4.3",
"phantom": "^6.3.0",
"recursive-keys": "^0.9.0",
"uglify-js": "^2.8.22",
"uws": "^0.14.5",
"webpack": "^2.7.0",
"webpack-bundle-analyzer": "^3.6.0"
},
"files": [
"builds/browser/es5/jsonrpc.min.js",
"builds/browser/es5/jsonrpc.min.js.map",
"builds/browser/es7/jsonrpc.min.js",
"builds/browser/es7/jsonrpc.min.js.map",
"LICENSE",
"src/*",
"index.js",
"README.MD",
"node_modules/babel-polyfill/dist/polyfill.min.js",
"node_modules/whatwg-fetch/fetch.js",
"node_modules/regenerator-runtime/runtime.js",
"node_modules/es6-promise/dist/es6-promise.auto.min.js",
"node_modules/es6-promise/dist/es6-promise.auto.min.js.map"
]
}