forked from lance-gg/lance
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.99 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.99 KB
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
73
74
75
76
77
78
79
80
81
82
{
"name": "lance-gg",
"version": "4.0.6",
"description": "A Node.js based real-time multiplayer game server",
"main": "dist/server/lance-gg.js",
"browser": "dist/client/lance-gg.js",
"scripts": {
"docs": "jsdoc -c jsdoc.conf.json",
"build": "rollup --config rollup.config.js",
"test-all": "mocha test/EndToEnd/",
"test-serializer": "mocha ./test/serializer/",
"test": "mocha ./test/serializer/ --compilers js:@babel/register"
},
"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": {
"cannon": "^0.6.2",
"event-emitter": "^0.3.5",
"jsdoc": "^3.5.5",
"mkdirp": "^0.5.1",
"p2": "^0.7.1",
"socket.io": "^2.1.1",
"socket.io-client": "^2.1.1",
"bufferutil": "^4.0.1",
"utf-8-validate": "^5.0.2"
},
"files": [
"src",
"dist"
],
"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",
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/preset-env": "^7.3.1",
"@babel/register": "^7.0.0",
"babel-plugin-module-resolver": "^3.2.0",
"babel-preset-env": "^1.7.0",
"chai": "^3.5.0",
"eslint": "^3.10.1",
"eslint-config-google": "^0.6.0",
"express": "^4.14.0",
"lance-docs-template": "github:lance-gg/lance-docs-template",
"mocha": "^5.2.0",
"query-string": "^4.3.1",
"rollup": "^1.2.3",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^4.0.1",
"should": "^11.0.0"
}
}