-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 766 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 766 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
31
{
"name": "poisson-disk",
"version": "1.1.1",
"description": "A fast Poisson Disk sampling algorithm for random 2D points generation",
"author": "Ogus",
"license": "WTFPL",
"main": "src/poisson-disk.js",
"scripts": {
"test": "node test/test.js | faucet",
"build": "uglifyjs src/poisson-disk.js -c -m reserved=['PoissonDisk'] -o src/poisson-disk.min.js"
},
"devDependencies": {
"faucet": "0.0.1",
"tape": "^4.10.1",
"uglify-js": "^3.4.9"
},
"keywords": [
"poisson-disk",
"poisson",
"sampling",
"random",
"points",
"coordinates",
"2D"
],
"repository": {
"type": "git",
"url": "https://github.com/ogus/poisson-disk.git"
},
"homepage": "https://github.com/ogus/poisson-disk#readme"
}