-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 959 Bytes
/
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
{
"name": "threejs-procedural-animal",
"version": "1.0.0",
"description": "An experiment in procedural animal generation using threejs.",
"main": "index.js",
"license": "MIT",
"author": {
"name": "Tomasz Dysinski",
"email": "oz@bunnybones.com",
"url": "https://github.com/bunnybones1"
},
"dependencies": {
"lodash": "^2.4.1",
"simplex-noise": "^2.1.1",
"three": "^0.82.1"
},
"devDependencies": {
"input-resize": "^2.0.0",
"loadandrunscripts": "^1.0.0",
"threejs-managed-view": "^1.1.0"
},
"scripts": {
"test": "beefy test.js --live --open"
},
"keywords": [
"threejs",
"animal",
"procedural"
],
"repository": {
"type": "git",
"url": "git://github.com/bunnybones1/threejs-procedural-animal.git"
},
"homepage": "https://github.com/bunnybones1/threejs-procedural-animal",
"bugs": {
"url": "https://github.com/bunnybones1/threejs-procedural-animal/issues"
}
}