forked from lance-gg/lance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.6 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "lance-gg",
"version": "3.0.13",
"description": "A Node.js based real-time multiplayer game server",
"keywords": [
"pixijs",
"pixi",
"socket",
"canvas",
"WebGL",
"HTML5",
"AFrame",
"physics",
"engine",
"game",
"realtime",
"multiplayer"
],
"repository": {
"type": "git",
"url": "git://github.com/lance-gg/lance.git"
},
"dependencies": {
"babel-cli": "^6.26.0",
"cannon": "^0.6.2",
"eventemitter3": "^1.2.0",
"jsdoc": "^3.5.5",
"mkdirp": "^0.5.1",
"p2": "^0.7.1",
"socket.io": "^2.1.1",
"socket.io-client": "^2.1.1"
},
"files": [
"src",
"es5"
],
"author": "Opher Vishnia",
"contributors": [
{
"name": "Opher Vishnia"
},
{
"name": "Gary Weiss"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/lance-gg/lance/issues"
},
"homepage": "https://github.com/lance-gg/lance#readme",
"scripts": {
"docs": "jsdoc -c jsdoc.conf.json",
"build": "babel src --out-dir es5",
"test-all": "mocha test/EndToEnd/",
"test-serializer": "mocha ./test/serializer/",
"test": "mocha ./test/serializer/ --compilers js:babel-core/register"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-preset-env": "^1.7.0",
"chai": "^3.5.0",
"docmeta": "OpherV/docmeta",
"eslint": "^3.10.1",
"eslint-config-google": "^0.6.0",
"express": "^4.14.0",
"ink-docstrap": "^1.3.0",
"lance-docs-template": "github:lance-gg/lance-docs-template",
"mocha": "^5.2.0",
"query-string": "^4.3.1",
"should": "^11.0.0"
}
}