-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.21 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.21 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
{
"name": "terragen",
"version": "0.0.1",
"description": "A voronoi based terrain generator library",
"main": "./dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "budo src/examples/render.js --live -- -t babelify",
"doc": "jsdoc src/lib/*.js -d docs",
"build": "babel src -d dist",
"build-bundle": "browserify src/examples/render.js -t babelify | ./node_modules/.bin/uglifyjs > bundle.js",
"prepublish": "npm run build"
},
"author": "Andre Esteve",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/andreesteve/terragen.git"
},
"bugs": {
"url": "https://github.com/andreesteve/terragen/issues"
},
"keywords": [
"map",
"terrain",
"generator",
"map generator",
"terrain generator",
"voronoi"
],
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.22.2",
"babel-preset-env": "^1.1.8",
"babelify": "^7.3.0",
"budo": "^9.4.5",
"jsdoc": "^3.4.3",
"uglifyjs": "^2.4.10"
},
"dependencies": {
"d3": "^4.4.3",
"exdat": "^0.6.2",
"fast-simplex-noise": "^3.2.0",
"seedrandom": "^2.4.2",
"stats.js": "^0.17.0",
"three": "^0.84.0"
}
}