forked from SplatJS/SplatJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1 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
{
"name": "splat-ecs",
"version": "7.5.0",
"description": "A 2D HTML5 Canvas game engine",
"main": "lib/main.js",
"scripts": {
"lint-js": "eslint lib",
"docs": "jsdoc lib -c jsdoc/conf.json -d docs -r README.md",
"build": "npm run lint-js && npm run docs"
},
"repository": {
"type": "git",
"url": "https://github.com/SplatJS/splat-ecs.git"
},
"keywords": [
"html5",
"canvas",
"game",
"browser"
],
"author": "Eric Lathrop <[email protected]> (http://ericlathrop.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/SplatJS/splat-ecs/issues"
},
"homepage": "https://github.com/SplatJS/splat-ecs",
"dependencies": {
"box-intersect": "^1.0.1",
"easing-js": "^1.0.1",
"entity-component-system": "^4.0.4",
"game-keyboard": "0.1.0",
"html5-gamepad": "^0.1.4",
"mersenne-twister": "^1.1.0",
"pako": "^1.0.3",
"time-accumulator": "0.0.0"
},
"devDependencies": {
"eslint": "^3.3.1",
"jsdoc": "^3.4.0"
}
}