-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 964 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
33
34
35
36
37
38
39
40
41
{
"name": "cannon-physics-websocket-server",
"version": "1.0.0",
"description": "Simulating physics with cannon.js on a node server and streaming the results to the client",
"keywords": [
"Node.js",
"application"
],
"author": {
"name": "@pigloo",
"email": "",
"url": "http://www.pigloo.co.uk/physics"
},
"homepage": "http://www.pigloo.co.uk",
"repository": {
"type": "git",
"url": "https://github.com/openshift/origin-server"
},
"engines": {
"node": ">= 5.0.0",
"npm": ">= 3.3.6"
},
"scripts": {
"start": "node server.js"
},
"dependencies": {
"bufferutil": "^1.3.0",
"cannon": "^0.6.2",
"express": "^4.14.0",
"node-tweet-stream": "^1.10.0",
"raf": "^3.3.0",
"socket.io": "^1.3.6",
"universal-analytics": "^0.3.9",
"utf-8-validate": "^2.0.0",
"ws": "^1.1.1"
},
"devDependencies": {},
"bundleDependencies": [],
"private": true,
"main": "server.js"
}