-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.08 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.08 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
{
"name": "toolsocket",
"version": "2.1.2",
"description": "A communication layer built on top of WebSocket for Node.js and browsers.",
"main": "src/index.js",
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"build": "esbuild src/index.js --bundle --minify --outfile=dist/toolsocket.js --format=iife --global-name=ToolSocket --external:ws"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ptcrealitylab/toolsocket.git"
},
"keywords": [
"websocket",
"client",
"server",
"browser",
"node"
],
"author": "Valentin Heun",
"contributors": [
"Daniel Dangond <ddangond@ptc.com>"
],
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/ptcrealitylab/toolsocket/issues"
},
"homepage": "https://github.com/ptcrealitylab/toolsocket#readme",
"dependencies": {
"ws": "^8.2.3"
},
"devDependencies": {
"@babel/eslint-parser": "^7.16.5",
"@babel/preset-env": "^7.16.11",
"esbuild": "^0.20.2",
"eslint": "^8.8.0",
"jest": "^27.2.5",
"regenerator-runtime": "^0.14.1"
}
}