Compare commits
3 Commits
1249f4db3a
...
9cecd855f3
Author | SHA1 | Date |
---|---|---|
AJ ONeal | 9cecd855f3 | |
AJ ONeal | b05104798b | |
AJ ONeal | 6725c2f4f5 |
10
README.md
10
README.md
|
@ -47,8 +47,16 @@ Browser Example
|
||||||
Node Example
|
Node Example
|
||||||
===
|
===
|
||||||
|
|
||||||
|
Decentralized Install
|
||||||
|
|
||||||
```bash
|
```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
|
```javascript
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
{
|
{
|
||||||
"name": "knuth-shuffle",
|
"name": "knuth-shuffle",
|
||||||
"version": "1.0.0",
|
"version": "1.0.2",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"ignore": [
|
"ignore": [
|
||||||
".jshintrc"
|
".jshintrc",
|
||||||
, "package.json"
|
"package.json"
|
||||||
],
|
],
|
||||||
"dependencies": {},
|
"dependencies": {},
|
||||||
"devDependencies": {}
|
"devDependencies": {}
|
||||||
|
|
10
package.json
10
package.json
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "knuth-shuffle",
|
"name": "knuth-shuffle",
|
||||||
"version": "1.0.1",
|
"version": "1.0.2",
|
||||||
"description": "The Fisher-Yates (aka Knuth) shuffle for Browser and Node.js",
|
"description": "The Fisher-Yates (aka Knuth) shuffle for Browser and Node.js",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
@ -8,7 +8,7 @@
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git://github.com/coolaj86/knuth-shuffle.git"
|
"url": "git://git.coolaj86.com/coolaj86/knuth-shuffle.git"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"ronald",
|
"ronald",
|
||||||
|
@ -24,9 +24,9 @@
|
||||||
"unbiased",
|
"unbiased",
|
||||||
"algorithm"
|
"algorithm"
|
||||||
],
|
],
|
||||||
"author": "AJ ONeal <coolaj86@gmail.com> (http://coolaj86.info/)",
|
"author": "AJ ONeal <coolaj86@gmail.com> (https://coolaj86.com/)",
|
||||||
"license": "Apache2",
|
"license": "(MIT OR Apache-2.0)",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/coolaj86/knuth-shuffle/issues"
|
"url": "https://git.coolaj86.com/coolaj86/knuth-shuffle/issues"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue