-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathpackage.json
41 lines (41 loc) · 1.06 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
{
"name": "koa-socket",
"version": "4.4.0",
"description": "Koa meets socket.io connected socket",
"main": "index.js",
"scripts": {
"test": "node spec/index.js spec/*.test.js",
"cover": "istanbul cover --report lcovonly --print detail spec/index.js spec/*.test.js",
"travis": "npm run cover && cat coverage/lcov.info | coveralls",
"example": "node example/server",
"example-babel": "babel-node --plugins transform-async-to-generator example/babelasync"
},
"keywords": [
"koa",
"koa v2",
"socket.io",
"web sockets",
"websocket"
],
"engines": {
"node": ">= 4"
},
"repository": "mattstyles/koa-socket",
"author": "Matt Styles",
"license": "MIT",
"dependencies": {
"koa-compose": "3.1.0",
"socket.io": "1.4.5"
},
"devDependencies": {
"babel-cli": "6.6.4",
"babel-plugin-transform-async-to-generator": "6.7.0",
"co": "4.6.0",
"coveralls": "2.11.6",
"istanbul": "0.4.2",
"koa": "^2.0.0-alpha.3",
"minimist": "^1.2.0",
"socket.io-client": "1.4.4",
"tape": "4.5.1"
}
}