-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 759 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 759 Bytes
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
{
"name": "noise-map",
"version": "1.0.0",
"description": " A procedural 2D map generator based on Perlin / simplex noise",
"author": "Ogus",
"license": "WTFPL",
"main": "src/noise-map.js",
"scripts": {
"test": "node test/test.js | faucet",
"build": "uglifyjs src/noise-map.js -c -m reserved=['NoiseMap','MapGenerator','HeightMap'] -o src/noise-map.min.js"
},
"devDependencies": {
"faucet": "0.0.1",
"tape": "^4.10.1",
"uglify-js": "^3.4.9"
},
"keywords": [
"procedural-generation",
"map",
"map-generator",
"perlin",
"simplex",
"noise"
],
"repository": {
"type": "git",
"url": "https://github.com/ogus/noise-map.git"
},
"homepage": "https://github.com/ogus/noise-map#readme"
}