Skip to content

Commit 488e83b

Browse files
aureooms- > @aureooms/ : update markdwon, json and yml files
1 parent 58a4d77 commit 488e83b

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ Randomness algorithms for JavaScript.
77
See [docs](https://aureooms.github.io/js-random).
88
Parent is [@aureooms/js-algorithms](https://aureooms.github.io/js-algorithms).
99

10-
[![NPM license](http://img.shields.io/npm/l/aureooms-js-random.svg?style=flat)](https://raw.githubusercontent.com/aureooms/js-random/master/LICENSE)
11-
[![NPM version](http://img.shields.io/npm/v/aureooms-js-random.svg?style=flat)](https://www.npmjs.org/package/aureooms-js-random)
10+
[![NPM license](http://img.shields.io/npm/l/@aureooms/js-random.svg?style=flat)](https://raw.githubusercontent.com/aureooms/js-random/master/LICENSE)
11+
[![NPM version](http://img.shields.io/npm/v/@aureooms/js-random.svg?style=flat)](https://www.npmjs.org/package/@aureooms/js-random)
1212
[![Build Status](http://img.shields.io/travis/aureooms/js-random.svg?style=flat)](https://travis-ci.org/aureooms/js-random)
1313
[![Coverage Status](http://img.shields.io/coveralls/aureooms/js-random.svg?style=flat)](https://coveralls.io/r/aureooms/js-random)
1414
[![Dependencies Status](http://img.shields.io/david/aureooms/js-random.svg?style=flat)](https://david-dm.org/aureooms/js-random#info=dependencies)
1515
[![devDependencies Status](http://img.shields.io/david/dev/aureooms/js-random.svg?style=flat)](https://david-dm.org/aureooms/js-random#info=devDependencies)
1616
[![Code Climate](http://img.shields.io/codeclimate/github/aureooms/js-random.svg?style=flat)](https://codeclimate.com/github/aureooms/js-random)
17-
[![NPM downloads per month](http://img.shields.io/npm/dm/aureooms-js-random.svg?style=flat)](https://www.npmjs.org/package/aureooms-js-random)
17+
[![NPM downloads per month](http://img.shields.io/npm/dm/@aureooms/js-random.svg?style=flat)](https://www.npmjs.org/package/@aureooms/js-random)
1818
[![GitHub issues](http://img.shields.io/github/issues/aureooms/js-random.svg?style=flat)](https://github.com/aureooms/js-random/issues)
1919
[![Documentation](https://aureooms.github.io/js-random/badge.svg)](https://aureooms.github.io/js-random/source.html)

doc/manual/example.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
```js
2-
import { randint , randfloat , sample , shuffle } from 'aureooms-js-random' ;
2+
import { randint , randfloat , sample , shuffle } from '@aureooms/js-random' ;
33

44
randfloat( 0 , 1 ) ; // 0.19876947347074747
55
randfloat( 0 , 1 ) ; // 0.23755912738852203

doc/manual/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ or [npm](https://github.com/npm/npm).
44

55
### jspm
66
```terminal
7-
jspm install npm:aureooms-js-random
7+
jspm install npm:@aureooms/js-random
88
```
99

1010
### npm
1111
```terminal
12-
npm install aureooms-js-random --save
12+
npm install @aureooms/js-random --save
1313
```

doc/manual/usage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import 'babel-polyfill' ;
88

99
Then
1010
```js
11-
const random = require( 'aureooms-js-random' ) ;
11+
const random = require( '@aureooms/js-random' ) ;
1212
// or
13-
import * as random from 'aureooms-js-random' ;
13+
import * as random from '@aureooms/js-random' ;
1414
```

0 commit comments

Comments
 (0)