-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.02 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
{
"name": "socket.io-intercept",
"version": "0.0.1",
"description": "Library for mocking Socket.IO transmission",
"keywords": [
"realtime",
"framework",
"websocket",
"test",
"mock",
"socket",
"io"
],
"main": "lib/intercept.js",
"scripts": {
"test": "tape \"test/index.js\"",
"lint": "jshint test lib",
"cover": "istanbul cover test/index.js"
},
"files": [
"lib/"
],
"author": "Benjamin Albert",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/benjamin-albert/socket.io-intercept"
},
"dependencies": {
"component-emitter": "^1.2.1",
"component-inherit": "0.0.3",
"debug": "^2.2.0",
"engine.io-parser": "^1.2.4",
"supertest": "^2.0.0"
},
"peerDependencies": {
"socket.io": "^1.4.5",
"socket.io-client": "^1.4.5"
},
"devDependencies": {
"socket.io": "^1.5.0",
"socket.io-client": "^1.5.0",
"istanbul": "^0.4.5",
"jshint": "^2.9.3",
"superagent": "^2.3.0",
"tape": "^4.6.0"
}
}