Compare commits

..

3 Commits

Author SHA1 Message Date
AJ ONeal 9cecd855f3 v1.0.2 2017-10-28 21:51:56 -06:00
AJ ONeal b05104798b update urls 2017-10-28 21:51:44 -06:00
AJ ONeal 6725c2f4f5 update urls 2017-10-28 21:46:54 -06:00
3 changed files with 17 additions and 9 deletions

View File

@ -47,8 +47,16 @@ Browser Example
Node Example
===
Decentralized Install
```bash
npm install --save knuth-shuffle
npm install --save git+https://git.coolaj86.com/coolaj86/knuth-shuffle.js.git#v1.0
```
Centralized Install
```bash
npm install --save knuth-shuffle@1.0
```
```javascript

View File

@ -1,10 +1,10 @@
{
"name": "knuth-shuffle",
"version": "1.0.0",
"version": "1.0.2",
"main": "index.js",
"ignore": [
".jshintrc"
, "package.json"
".jshintrc",
"package.json"
],
"dependencies": {},
"devDependencies": {}

View File

@ -1,6 +1,6 @@
{
"name": "knuth-shuffle",
"version": "1.0.1",
"version": "1.0.2",
"description": "The Fisher-Yates (aka Knuth) shuffle for Browser and Node.js",
"main": "index.js",
"scripts": {
@ -8,7 +8,7 @@
},
"repository": {
"type": "git",
"url": "git://github.com/coolaj86/knuth-shuffle.git"
"url": "git://git.coolaj86.com/coolaj86/knuth-shuffle.git"
},
"keywords": [
"ronald",
@ -24,9 +24,9 @@
"unbiased",
"algorithm"
],
"author": "AJ ONeal <coolaj86@gmail.com> (http://coolaj86.info/)",
"license": "Apache2",
"author": "AJ ONeal <coolaj86@gmail.com> (https://coolaj86.com/)",
"license": "(MIT OR Apache-2.0)",
"bugs": {
"url": "https://github.com/coolaj86/knuth-shuffle/issues"
"url": "https://git.coolaj86.com/coolaj86/knuth-shuffle/issues"
}
}