-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
73 lines (73 loc) · 1.77 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
{
"name": "simple-websocket",
"description": "Simple, EventEmitter API for WebSockets (browser)",
"version": "9.1.0",
"author": {
"name": "Feross Aboukhadijeh",
"email": "[email protected]",
"url": "https://feross.org"
},
"browser": {
"ws": false
},
"bugs": {
"url": "https://github.com/feross/simple-websocket/issues"
},
"dependencies": {
"debug": "^4.3.1",
"queue-microtask": "^1.2.2",
"randombytes": "^2.1.0",
"readable-stream": "^3.6.0",
"ws": "^7.4.2"
},
"devDependencies": {
"airtap": "^3.0.0",
"babel-eslint": "^10.1.0",
"babel-minify": "^0.5.1",
"browserify": "^17.0.0",
"prettier-bytes": "^1.0.4",
"speedometer": "^1.1.0",
"standard": "*",
"tape": "^5.1.1"
},
"homepage": "https://github.com/feross/simple-websocket",
"keywords": [
"simple",
"simple websocket",
"simple-websocket",
"socket",
"websocket",
"ws"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/feross/simple-websocket.git"
},
"scripts": {
"build": "browserify -s SimpleWebsocket -r . | minify > simplewebsocket.min.js",
"size": "npm run build && cat simplewebsocket.min.js | gzip | wc -c",
"test": "standard && npm run test-node && npm run test-browser",
"test-browser": "airtap -- test/*.js",
"test-browser-local": "airtap --local -- test/*.js",
"test-node": "tape test/*.js test/node/*.js"
},
"standard": {
"parser": "babel-eslint"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
]
}