Skip to content

Commit dc9ff10

Browse files
aureooms- > @aureooms/ : update markdwon, json and yml files
1 parent e886306 commit dc9ff10

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ Parent is [@aureooms/js-algorithms](https://github.com/aureooms/js-algorithms).
1111
let fordjohnson = sort._fordjohnson( search.binarysearch ) ;
1212
```
1313

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

doc/manual/example.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
```js
2-
import array from "aureooms-js-array" ;
3-
import search from "aureooms-js-search" ;
4-
import compare from "aureooms-js-compare" ;
2+
import array from "@aureooms/js-array" ;
3+
import search from "@aureooms/js-search" ;
4+
import compare from "@aureooms/js-compare" ;
55

66
let fordjohnson = function ( compare , a , i , j ) {
77

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-sort
7+
jspm install npm:@aureooms/js-sort
88
```
99

1010
### npm
1111
```terminal
12-
npm install aureooms-js-sort --save
12+
npm install @aureooms/js-sort --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 measure = require( 'aureooms-js-sort' ) ;
11+
const measure = require( '@aureooms/js-sort' ) ;
1212
// or
13-
import measure from 'aureooms-js-sort' ;
13+
import measure from '@aureooms/js-sort' ;
1414
```

0 commit comments

Comments
 (0)