-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.4 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": "poisson-disk-sampling",
"version": "2.3.1",
"description": "Poisson disk sampling in arbitrary dimensions",
"main": "src/poisson-disk-sampling.js",
"scripts": {
"build": "browserify src/poisson-disk-sampling.js --s PoissonDiskSampling > build/poisson-disk-sampling.js",
"build-min": "browserify src/poisson-disk-sampling.js --s PoissonDiskSampling | terser --ecma 5 > build/poisson-disk-sampling.min.js",
"test": "mocha test/",
"eyeball": "node eyeball.js 2 > test.png && open test.png",
"benchmark": "node benchmark.js"
},
"files": [
"src/neighbourhood.js",
"src/poisson-disk-sampling.js",
"src/sphere-random.js",
"src/tiny-ndarray.js",
"src/implementations/fixed-density.js",
"src/implementations/variable-density.js"
],
"repository": {
"type": "git",
"url": "https://github.com/kchapelier/poisson-disk-sampling.git"
},
"keywords": [
"poisson",
"noise",
"blue noise",
"sampling"
],
"author": "Kevin Chapelier",
"license": "MIT",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/kchapelier/poisson-disk-sampling/issues"
},
"homepage": "https://github.com/kchapelier/poisson-disk-sampling",
"dependencies": {
"moore": "~1.0.0"
},
"devDependencies": {
"browserify": "^17.0.0",
"chai": "~4.3.6",
"mocha": "~10.0.0",
"pngjs-nozlib": "~1.0.0",
"terser": "^5.13.1"
}
}