-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
38 lines (38 loc) · 1.18 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
{
"author": "Scott Stensland <[email protected]> (https://stackoverflow.com/users/147175/scott-stensland/)",
"bugs": {
"url": "https://github.com/scottstensland/webgl-3d-animation/issues"
},
"dependencies": {
"express": "^4.18.2",
"ws": "^8.16.0"
},
"description": "Interactive 3D animation using WebGL showing a 2D predator prey ecology on a grid which is real-time mapped onto the surface of a 3D torus. node.js server side gives access to WAV format files which are rendered using Web Audio API",
"engines": {
"node": ">=6.x"
},
"homepage": "https://github.com/scottstensland/webgl-3d-animation",
"keywords": [
"webgl",
"audio",
"webaudio",
"animation",
"predator-prey",
"torus",
"3D",
"interactive"
],
"license": "ISC",
"main": "src/app.js",
"name": "webgl-3d-animation",
"repository": {
"type": "git",
"url": "https://github.com/scottstensland/webgl-3d-animation.git"
},
"scripts": {
"start": "node src/app.js",
"test": "make"
},
"subdomain": "webgl-3d-animation",
"version": "1.0.4"
}