Compare commits
No commits in common. "9cecd855f3305ed2d7ec882bd5eb2c1d04da4de4" and "1249f4db3a38679c5804ee0fe822e787914a3b54" have entirely different histories.
9cecd855f3
...
1249f4db3a
10
README.md
10
README.md
|
@ -47,16 +47,8 @@ Browser Example
|
|||
Node Example
|
||||
===
|
||||
|
||||
Decentralized Install
|
||||
|
||||
```bash
|
||||
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
|
||||
npm install --save knuth-shuffle
|
||||
```
|
||||
|
||||
```javascript
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
"name": "knuth-shuffle",
|
||||
"version": "1.0.2",
|
||||
"version": "1.0.0",
|
||||
"main": "index.js",
|
||||
"ignore": [
|
||||
".jshintrc",
|
||||
"package.json"
|
||||
".jshintrc"
|
||||
, "package.json"
|
||||
],
|
||||
"dependencies": {},
|
||||
"devDependencies": {}
|
||||
|
|
10
package.json
10
package.json
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "knuth-shuffle",
|
||||
"version": "1.0.2",
|
||||
"version": "1.0.1",
|
||||
"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://git.coolaj86.com/coolaj86/knuth-shuffle.git"
|
||||
"url": "git://github.com/coolaj86/knuth-shuffle.git"
|
||||
},
|
||||
"keywords": [
|
||||
"ronald",
|
||||
|
@ -24,9 +24,9 @@
|
|||
"unbiased",
|
||||
"algorithm"
|
||||
],
|
||||
"author": "AJ ONeal <coolaj86@gmail.com> (https://coolaj86.com/)",
|
||||
"license": "(MIT OR Apache-2.0)",
|
||||
"author": "AJ ONeal <coolaj86@gmail.com> (http://coolaj86.info/)",
|
||||
"license": "Apache2",
|
||||
"bugs": {
|
||||
"url": "https://git.coolaj86.com/coolaj86/knuth-shuffle/issues"
|
||||
"url": "https://github.com/coolaj86/knuth-shuffle/issues"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue