-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathbower.json
30 lines (30 loc) · 825 Bytes
/
bower.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
{
"name": "mersennetwister",
"version": "0.2.3",
"license": "BSD-3-Clause",
"authors": [
"Raphael Pigulla <[email protected]>",
"Kirby Banman <[email protected]>"
],
"description": "A standalone, pure JavaScript implementation of the Mersenne Twister pseudo random number generator. Compatible with Node.js, requirejs and browser environments.",
"main": "./src/MersenneTwister.js",
"repository": {
"type": "git",
"url": "https://github.com/pigulla/mersennetwister"
},
"keywords": [
"rng",
"random",
"mersennetwister"
],
"ignore": [
"node_modules",
"bower_components",
"tests",
"examples",
"package.json",
"bower.json",
"Gruntfile.js",
"**/.*"
]
}