-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
45 lines (45 loc) · 1.13 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
{
"name": "websocket-challenge",
"version": "1.2.0",
"description": "A simple WebSocket competition script for Node.js that uses WebSocket-Node WebSocket server. The challenge is a little contest designed for after-training practice sessions so people can have fun with WebSockets applying their recently acquired knowledge.",
"main": "./src/service.coffee",
"scripts": {
"start": "coffee ./src/service.coffee",
"test": "mocha --compilers coffee:coffee-script/register -R spec"
},
"repository": {
"type": "git",
"url": "https://github.com/DaQuirm/websocket-challenge.git"
},
"contributors": [
{
"name": "Vasiliy Ermolovich",
"email": "[email protected]"
},
{
"name": "Dzmitry Varabei"
}
],
"keywords": [
"challenge",
"websocket",
"binary"
],
"author": "DaQuirm",
"bugs": {
"url": "https://github.com/DaQuirm/websocket-challenge/issues"
},
"dependencies" : {
"websocket": ">=1.0.8",
"bunyan":">=0.17.0",
"coffee-script": "*"
},
"devDependencies": {
"mocha": "*",
"should": "*",
"chai": "*"
},
"engines": {
"node": ">=0.6"
}
}