-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.19 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.19 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
{
"name": "ws-mplex",
"version": "0.2.0",
"description": "Multiplex Streams over WebSockets",
"main": "dist/cjs/index.js",
"module": "dist/ejs/index.js",
"types": "dist/js/index.d.js",
"scripts": {
"test": "mocha"
},
"author": "Stephan Thamm",
"license": "LGPLv3",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/plugin-proposal-export-namespace-from": "^7.8.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/plugin-transform-modules-commonjs": "^7.9.0",
"@babel/preset-typescript": "^7.9.0",
"@babel/register": "^7.9.0",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/sinon-chai": "^3.2.4",
"chai": "^4.2.0",
"chai-bytes": "^0.1.2",
"mocha": "^7.1.1",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0",
"ts-node": "^8.8.2",
"typescript": "^3.8.3"
},
"dependencies": {
"@msgpack/msgpack": "^1.12.0",
"@types/node": "^13.11.0",
"@types/ws": "^7.2.3",
"ws": "^7.2.3"
}
}