forked from realmunk/every-bit-matters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 824 Bytes
/
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
{
"name": "every-bit-matters",
"version": "1.0.0",
"description": "Workshop providing an introduction to web-architecture through a step-by-step tutorial on how to make a full-stack web application with WebSockets. The domain is speedtesting – where Every Bit Matters.",
"main": "web.js",
"repository": {
"type": "git",
"url": "git+https://github.com/krsjan/every-bit-matters.git"
},
"scripts": {
"start": "node web.js"
},
"keywords": [
"WebSockets",
"speedtesting",
"express",
"socket.io"
],
"author": "@krsjan, @teodoran",
"license": "MIT",
"bugs": {
"url": "https://github.com/krsjan/every-bit-matters/issues"
},
"homepage": "https://github.com/krsjan/every-bit-matters#readme",
"dependencies": {
"express": "^4.13.4",
"socket.io": "^1.4.5"
}
}