-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.04 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
{
"name": "socket-rest",
"version": "0.1.2",
"description": "A router for socket.io that handles events in a RESTful style",
"main": "index.js",
"scripts": {
"test": "DEBUG=socket-rest* mocha --reporter spec",
"cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec test/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fcouceiro/socket-rest.git"
},
"keywords": [
"socket.io",
"socket",
"rest",
"router"
],
"author": "Francisco Couceiro <couceiro.f@gmail.com> (https://remote.com/franciscocouceiro)",
"license": "MIT",
"bugs": {
"url": "https://github.com/fcouceiro/socket-rest/issues"
},
"homepage": "https://github.com/fcouceiro/socket-rest#readme",
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^2.13.1",
"istanbul": "^0.4.5",
"mocha": "^3.5.3",
"socket.io": "^2.0.3",
"socket.io-client": "^2.0.3"
},
"dependencies": {
"debug": "^3.0.1",
"url-parse": "^1.1.9",
"url-pattern": "^1.0.3"
}
}