-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
42 lines (42 loc) · 849 Bytes
/
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
{
"name": "wshook",
"version": "0.2.0",
"description": "Easily intercept and modify WebSocket requests and message events",
"main": "wsHook.js",
"directories": {
"example": "examples",
"test": "tests"
},
"dependencies": {
"ws": "^3.1.0"
},
"devDependencies": {
"standard": "^10.0.3"
},
"scripts": {
"example": "node examples/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skepticfx/wshook.git"
},
"standard": {
"globals": [
"wsHook",
"WebSocket",
"expect",
"MessageEvent"
],
"env": "mocha",
"ignore": [
"tests/dist/"
]
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/skepticfx/wshook/issues"
},
"homepage": "https://github.com/skepticfx/wshook#readme"
}