-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
47 lines (47 loc) · 1.7 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
42
43
44
45
46
47
{
"name": "voronoi-map",
"version": "0.0.4",
"description": "JavaScript port of Amit Patel's mapgen2 https://github.com/amitp/mapgen2 Map generator for games. Generates island maps with a focus on mountains, rivers, coastlines.",
"keywords": [
"game",
"map",
"generator",
"engine",
"voronoi",
"delaunay",
"geometry",
"browser"
],
"author": "Richard Janicek <[email protected]> (http://www.janicek.co)",
"license": "MIT",
"homepage": "http://rjanicek.github.io/voronoi-map-js/",
"repository": {
"type": "git",
"url": "https://github.com/rjanicek/voronoi-map-js"
},
"scripts": {
"build": "npm run build-vanilla && npm run build-demo",
"build-vanilla": "npm run build-vanilla-browserify && npm run build-vanilla-uglify",
"build-vanilla-browserify": "browserify -t brfs src/vanilla.js > bin/voronoi-map.js",
"build-vanilla-debug": "browserify -d -t brfs src/vanilla.js > bin/voronoi-map.js",
"build-vanilla-uglify": "uglifyjs bin/voronoi-map.js -m -c -o bin/voronoi-map.min.js",
"build-demo": "npm run build-demo-browserify && npm run build-demo-uglify",
"build-demo-browserify": "browserify -t brfs src/demo.js > bin/demo/voronoi-map-demo.js",
"build-demo-debug": "browserify -d -t brfs src/demo.js > bin/demo/voronoi-map-demo.js",
"build-demo-uglify": "uglifyjs bin/demo/voronoi-map-demo.js -m -c -o bin/demo/voronoi-map-demo.js",
"test": "node test"
},
"devDependencies": {
"brfs": "^1.2.0",
"browserify": "^6.0.2",
"glob": "^4.0.6",
"nodeunit": "^0.9.0",
"uglify-js": "^2.4.15"
},
"dependencies": {
"lodash": "^2.4.1",
"pixi-noise-filter": "0.0.3",
"pixi.js": "^1.6.1",
"shape2d": "0.0.5"
}
}