knuth-shuffle.js/package.json

33 lines
702 B
JSON
Raw Normal View History

2013-12-03 07:44:42 +00:00
{
"name": "knuth-shuffle",
2017-10-29 03:51:56 +00:00
"version": "1.0.2",
2013-12-03 07:44:42 +00:00
"description": "The Fisher-Yates (aka Knuth) shuffle for Browser and Node.js",
"main": "index.js",
"scripts": {
"test": "node example.js"
},
"repository": {
"type": "git",
2017-10-29 03:54:19 +00:00
"url": "https://git.coolaj86.com/coolaj86/knuth-shuffle.git"
2013-12-03 07:44:42 +00:00
},
"keywords": [
"ronald",
"fisher",
"frank",
"yates",
"fisher-yates",
"donald",
"knuth",
"shuffle",
"random",
"randomize",
"unbiased",
"algorithm"
],
2017-10-29 03:46:54 +00:00
"author": "AJ ONeal <coolaj86@gmail.com> (https://coolaj86.com/)",
"license": "(MIT OR Apache-2.0)",
2013-12-03 07:44:42 +00:00
"bugs": {
2017-10-29 03:46:54 +00:00
"url": "https://git.coolaj86.com/coolaj86/knuth-shuffle/issues"
2013-12-03 07:44:42 +00:00
}
}