forked from thomasmortensson/node-deployment-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 834 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
30
31
32
{
"name": "node-deployment-workshop",
"version": "1.0.0",
"description": "A simple node chat server example for Bristol Digimakers",
"main": "server.js",
"dependencies": {
"bower": "^1.3.12",
"express": "^4.12.0",
"socket.io": "^1.3.4"
},
"devDependencies": {},
"scripts": {
"test": "node server.js",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/thomasmortensson/node-deployment-workshop.git"
},
"keywords": [
"Digimakers"
],
"authors": [
"Thomas Mortensson <[email protected]>",
"Graham Laming <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/thomasmortensson/node-deployment-workshop/issues"
},
"homepage": "https://github.com/thomasmortensson/node-deployment-workshop"
}