-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1016 Bytes
/
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
{
"name": "fdrandom",
"version": "3.2.0",
"description": "Fast deterministic random methods. Includes Uniform, Gaussian, gaming distributions, shuffles and antisort",
"main": "Fdrandom.js",
"scripts": {
"test": "require('fdrandom').checkfloat()"
},
"tonicExample": "require('fdrandom').hot().antisort(false,['the','be','that','not','to','be','or','is','to','question'],0,3).join(' ')",
"repository": {
"type": "git",
"url": "git+https://github.com/strainer/Fdrandom.js.git"
},
"keywords": [
"rng",
"prng",
"seedable",
"fast",
"deterministic",
"distribution",
"variate",
"gaussian",
"normal",
"cauchy",
"game",
"random",
"shuffle",
"antisort",
"procedural generation"
],
"author": "Andrew Strain <AndrewInput@gmail.com> (https://github.com/strainer/)",
"license": "PDDL-1.0",
"bugs": {
"url": "https://github.com/strainer/Fdrandom.js/issues"
},
"homepage": "https://github.com/strainer/Fdrandom.js#readme"
}