-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
33 lines (33 loc) · 1.21 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
{
"name": "reaction-diffusion-playground",
"version": "1.0.0",
"description": "Grid-based process that generates complex and dynamic patterns based the interactions of two chemicals as they _diffuse_ through a medium. At every location on the grid these chemicals (usually referred to as `A` and `B`) have a chance of causing a _reaction_ that converts chemicals of one type to another based on their relative concentrations at that location.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"serve": "webpack-dev-server",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jasonwebb/reaction-diffusion-playground.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jasonwebb/reaction-diffusion-playground/issues"
},
"homepage": "https://jasonwebb.github.io/reaction-diffusion-playground",
"devDependencies": {
"fps": "0.0.3",
"glsl-shader-loader": "^0.1.6",
"path": "^0.12.7",
"three": "^0.115.0",
"tweakpane": "^1.3.3",
"webmidi": "^2.5.1",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {}
}