-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.05 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
{
"name": "socketio-transport",
"description": "socketio-transport will allow you to define request handlers on the server side and to access them from the client side.",
"version": "0.0.4",
"homepage": "https://github.com/cosmosio/socketio-transport",
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/cosmosio/socketio-transport/master/LICENSE"
}
],
"files": [
"LICENSE",
"index.js",
"server",
"client"
],
"author": "Olivier Scherrer <pode.fr@gmail.com>",
"keywords": [
"transport",
"request",
"handlers",
"listen",
"socket.io",
"socketio",
"server",
"client"
],
"repository": {
"type": "git",
"url": "git@github.com:cosmosio/socketio-transport.git"
},
"bugs": {
"url": "https://github.com/cosmosio/socketio-transport/issues"
},
"scripts": {
"test": "jasmine-node test/"
},
"main": "index.js",
"browser": "browser/index.js",
"devDependencies": {
"watch-notify": "0.0.2",
"jasmine-node": "~1.14.3"
},
"dependencies": {}
}