-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.31 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
{
"name": "jittered-hexagonal-grid-sampling",
"version": "1.0.1",
"description": "Jittered hexagonal grid sampling",
"main": "src/jittered-hexagonal-grid-sampling.js",
"scripts": {
"build": "browserify src/jittered-hexagonal-grid-sampling.js --s JitteredHexagonalGridSampling > build/jittered-hexagonal-grid-sampling.js",
"build-min": "browserify src/jittered-hexagonal-grid-sampling.js --s JitteredHexagonalGridSampling | terser --ecma 5 > build/jittered-hexagonal-grid-sampling.min.js",
"test": "mocha test/",
"eyeball": "node eyeball.js 2 > test.png && open test.png",
"benchmark": "node benchmark.js"
},
"files": [
"src/jittered-hexagonal-grid-sampling.js"
],
"repository": {
"type": "git",
"url": "https://github.com/kchapelier/jittered-hexagonal-grid-sampling.git"
},
"keywords": [
"noise",
"jittered grid",
"sampling"
],
"author": "Kevin Chapelier",
"license": "MIT",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/kchapelier/jittered-hexagonal-grid-sampling/issues"
},
"homepage": "https://github.com/kchapelier/jittered-hexagonal-grid-sampling",
"dependencies": {},
"devDependencies": {
"browserify": "^17.0.0",
"chai": "^4.3.6",
"mocha": "~10.0.0",
"pngjs-nozlib": "~1.0.0",
"terser": "^5.13.1"
}
}