Skip to content

Commit 3106fef

Browse files
aureooms- > @aureooms/ : update markdwon, json and yml files
1 parent 935dca3 commit 3106fef

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ let [ a , b ] = add( 1 , 10 , 1 , 5 ) ;
88
a / b === 3 / 10 ; // true
99
```
1010

11-
[![NPM license](http://img.shields.io/npm/l/aureooms-js-rational.svg?style=flat)](https://raw.githubusercontent.com/aureooms/js-rational/master/LICENSE)
12-
[![NPM version](http://img.shields.io/npm/v/aureooms-js-rational.svg?style=flat)](https://www.npmjs.org/package/aureooms-js-rational)
13-
[![Bower version](http://img.shields.io/bower/v/aureooms-js-rational.svg?style=flat)](http://bower.io/search/?q=aureooms-js-rational)
11+
[![NPM license](http://img.shields.io/npm/l/@aureooms/js-rational.svg?style=flat)](https://raw.githubusercontent.com/aureooms/js-rational/master/LICENSE)
12+
[![NPM version](http://img.shields.io/npm/v/@aureooms/js-rational.svg?style=flat)](https://www.npmjs.org/package/@aureooms/js-rational)
13+
[![Bower version](http://img.shields.io/bower/v/@aureooms/js-rational.svg?style=flat)](http://bower.io/search/?q=@aureooms/js-rational)
1414
[![Build Status](http://img.shields.io/travis/aureooms/js-rational.svg?style=flat)](https://travis-ci.org/aureooms/js-rational)
1515
[![Coverage Status](http://img.shields.io/coveralls/aureooms/js-rational.svg?style=flat)](https://coveralls.io/r/aureooms/js-rational)
1616
[![Dependencies Status](http://img.shields.io/david/aureooms/js-rational.svg?style=flat)](https://david-dm.org/aureooms/js-rational#info=dependencies)
1717
[![devDependencies Status](http://img.shields.io/david/dev/aureooms/js-rational.svg?style=flat)](https://david-dm.org/aureooms/js-rational#info=devDependencies)
1818
[![Code Climate](http://img.shields.io/codeclimate/github/aureooms/js-rational.svg?style=flat)](https://codeclimate.com/github/aureooms/js-rational)
19-
[![NPM downloads per month](http://img.shields.io/npm/dm/aureooms-js-rational.svg?style=flat)](https://www.npmjs.org/package/aureooms-js-rational)
19+
[![NPM downloads per month](http://img.shields.io/npm/dm/@aureooms/js-rational.svg?style=flat)](https://www.npmjs.org/package/@aureooms/js-rational)
2020
[![GitHub issues](http://img.shields.io/github/issues/aureooms/js-rational.svg?style=flat)](https://github.com/aureooms/js-rational/issues)
2121
[![Inline docs](http://inch-ci.org/github/aureooms/js-rational.svg?branch=master&style=shields)](http://inch-ci.org/github/aureooms/js-rational)
2222

@@ -35,7 +35,7 @@ and [npm](https://github.com/npm/npm).
3535
```terminal
3636
jspm install github:aureooms/js-rational
3737
# or
38-
jspm install npm:aureooms-js-rational
38+
jspm install npm:@aureooms/js-rational
3939
```
4040
### duo
4141
No install step needed for duo!
@@ -47,35 +47,35 @@ component install aureooms/js-rational
4747

4848
### bower
4949
```terminal
50-
bower install aureooms-js-rational
50+
bower install @aureooms/js-rational
5151
```
5252

5353
### ender
5454
```terminal
55-
ender add aureooms-js-rational
55+
ender add @aureooms/js-rational
5656
```
5757

5858
### jam
5959
```terminal
60-
jam install aureooms-js-rational
60+
jam install @aureooms/js-rational
6161
```
6262

6363
### spm
6464
```terminal
65-
spm install aureooms-js-rational --save
65+
spm install @aureooms/js-rational --save
6666
```
6767

6868
### npm
6969
```terminal
70-
npm install aureooms-js-rational --save
70+
npm install @aureooms/js-rational --save
7171
```
7272

7373
## Require
7474
### jspm
7575
```js
7676
let rational = require( "github:aureooms/js-rational" ) ;
7777
// or
78-
import rational from 'aureooms-js-rational' ;
78+
import rational from '@aureooms/js-rational' ;
7979
```
8080
### duo
8181
```js
@@ -84,25 +84,25 @@ let rational = require( "aureooms/js-rational" ) ;
8484

8585
### component, ender, spm, npm
8686
```js
87-
let rational = require( "aureooms-js-rational" ) ;
87+
let rational = require( "@aureooms/js-rational" ) ;
8888
```
8989

9090
### bower
9191
The script tag exposes the global variable `rational`.
9292
```html
93-
<script src="bower_components/aureooms-js-rational/js/dist/rational.min.js"></script>
93+
<script src="bower_components/@aureooms/js-rational/js/dist/rational.min.js"></script>
9494
```
9595
Alternatively, you can use any tool mentioned [here](http://bower.io/docs/tools/).
9696

9797
### jam
9898
```js
99-
require( [ "aureooms-js-rational" ] , function ( rational ) { ... } ) ;
99+
require( [ "@aureooms/js-rational" ] , function ( rational ) { ... } ) ;
100100
```
101101

102102
## Use
103103

104104
```js
105-
let number = require( 'aureooms-js-number' ) ;
105+
let number = require( '@aureooms/js-number' ) ;
106106
let add = rational._add( number.mul , number.add ) ;
107107
let sub = rational._sub( number.mul , number.sub ) ;
108108
let mul = rational._mul( number.mul ) ;

0 commit comments

Comments
 (0)