Skip to content

Commit d75a11f

Browse files
😒 chore: Move repository.
1 parent 45ab583 commit d75a11f

File tree

7 files changed

+30
-30
lines changed

7 files changed

+30
-30
lines changed

.esdoc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"autoPrivate": true
3636
},
3737
"brand": {
38-
"title": "@aureooms/js-lempel-ziv"
38+
"title": "@compression-algorithm/lempel-ziv"
3939
},
4040
"test": {
4141
"type": "ava",

README.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
1-
:luggage: [@aureooms/js-lempel-ziv](https://aureooms.github.io/js-lempel-ziv)
1+
:luggage: [@compression-algorithm/lempel-ziv](https://compression-algorithm.github.io/lempel-ziv)
22
==
33

44
Lempel-Ziv lossless data compression algorithms for JavaScript.
5-
See [docs](https://aureooms.github.io/js-lempel-ziv/index.html).
5+
See [docs](https://compression-algorithm.github.io/lempel-ziv/index.html).
66

77
> :warning: The code requires `regeneratorRuntime` to be defined, for instance by importing
88
> [regenerator-runtime/runtime](https://www.npmjs.com/package/regenerator-runtime).
99
1010
```js
11-
import {dict, encode, decode} from '@aureooms/js-lempel-ziv/lz78' ;
11+
import {dict, encode, decode} from '@compression-algorithm/lempel-ziv/lz78' ;
1212
[...decode(dict(), encode(dict(), 'abcd'))].join(''); // abcd
1313
```
1414

15-
[![License](https://img.shields.io/github/license/aureooms/js-lempel-ziv.svg)](https://raw.githubusercontent.com/aureooms/js-lempel-ziv/main/LICENSE)
16-
[![Version](https://img.shields.io/npm/v/@aureooms/js-lempel-ziv.svg)](https://www.npmjs.org/package/@aureooms/js-lempel-ziv)
17-
[![Build](https://img.shields.io/travis/aureooms/js-lempel-ziv/main.svg)](https://travis-ci.org/aureooms/js-lempel-ziv/branches)
18-
[![Dependencies](https://img.shields.io/david/aureooms/js-lempel-ziv.svg)](https://david-dm.org/aureooms/js-lempel-ziv)
19-
[![Dev dependencies](https://img.shields.io/david/dev/aureooms/js-lempel-ziv.svg)](https://david-dm.org/aureooms/js-lempel-ziv?type=dev)
20-
[![GitHub issues](https://img.shields.io/github/issues/aureooms/js-lempel-ziv.svg)](https://github.com/aureooms/js-lempel-ziv/issues)
21-
[![Downloads](https://img.shields.io/npm/dm/@aureooms/js-lempel-ziv.svg)](https://www.npmjs.org/package/@aureooms/js-lempel-ziv)
15+
[![License](https://img.shields.io/github/license/compression-algorithm/lempel-ziv.svg)](https://raw.githubusercontent.com/compression-algorithm/lempel-ziv/main/LICENSE)
16+
[![Version](https://img.shields.io/npm/v/@compression-algorithm/lempel-ziv.svg)](https://www.npmjs.org/package/@compression-algorithm/lempel-ziv)
17+
[![Build](https://img.shields.io/travis/compression-algorithm/lempel-ziv/main.svg)](https://travis-ci.org/compression-algorithm/lempel-ziv/branches)
18+
[![Dependencies](https://img.shields.io/david/compression-algorithm/lempel-ziv.svg)](https://david-dm.org/compression-algorithm/lempel-ziv)
19+
[![Dev dependencies](https://img.shields.io/david/dev/compression-algorithm/lempel-ziv.svg)](https://david-dm.org/compression-algorithm/lempel-ziv?type=dev)
20+
[![GitHub issues](https://img.shields.io/github/issues/compression-algorithm/lempel-ziv.svg)](https://github.com/compression-algorithm/lempel-ziv/issues)
21+
[![Downloads](https://img.shields.io/npm/dm/@compression-algorithm/lempel-ziv.svg)](https://www.npmjs.org/package/@compression-algorithm/lempel-ziv)
2222

23-
[![Code issues](https://img.shields.io/codeclimate/issues/aureooms/js-lempel-ziv.svg)](https://codeclimate.com/github/aureooms/js-lempel-ziv/issues)
24-
[![Code maintainability](https://img.shields.io/codeclimate/maintainability/aureooms/js-lempel-ziv.svg)](https://codeclimate.com/github/aureooms/js-lempel-ziv/trends/churn)
25-
[![Code coverage (cov)](https://img.shields.io/codecov/c/gh/aureooms/js-lempel-ziv/main.svg)](https://codecov.io/gh/aureooms/js-lempel-ziv)
26-
[![Code technical debt](https://img.shields.io/codeclimate/tech-debt/aureooms/js-lempel-ziv.svg)](https://codeclimate.com/github/aureooms/js-lempel-ziv/trends/technical_debt)
27-
[![Documentation](https://aureooms.github.io/js-lempel-ziv/badge.svg)](https://aureooms.github.io/js-lempel-ziv/source.html)
28-
[![Package size](https://img.shields.io/bundlephobia/minzip/@aureooms/js-lempel-ziv)](https://bundlephobia.com/result?p=@aureooms/js-lempel-ziv)
23+
[![Code issues](https://img.shields.io/codeclimate/issues/compression-algorithm/lempel-ziv.svg)](https://codeclimate.com/github/compression-algorithm/lempel-ziv/issues)
24+
[![Code maintainability](https://img.shields.io/codeclimate/maintainability/compression-algorithm/lempel-ziv.svg)](https://codeclimate.com/github/compression-algorithm/lempel-ziv/trends/churn)
25+
[![Code coverage (cov)](https://img.shields.io/codecov/c/gh/compression-algorithm/lempel-ziv/main.svg)](https://codecov.io/gh/compression-algorithm/lempel-ziv)
26+
[![Code technical debt](https://img.shields.io/codeclimate/tech-debt/compression-algorithm/lempel-ziv.svg)](https://codeclimate.com/github/compression-algorithm/lempel-ziv/trends/technical_debt)
27+
[![Documentation](https://compression-algorithm.github.io/lempel-ziv/badge.svg)](https://compression-algorithm.github.io/lempel-ziv/source.html)
28+
[![Package size](https://img.shields.io/bundlephobia/minzip/@compression-algorithm/lempel-ziv)](https://bundlephobia.com/result?p=@compression-algorithm/lempel-ziv)

doc/manual/example.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Examples
22

3-
> More examples in [the test files](https://github.com/aureooms/js-lempel-ziv/tree/main/test/src).
3+
> More examples in [the test files](https://github.com/compression-algorithm/lempel-ziv/tree/main/test/src).

doc/manual/installation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ or [jspm](https://jspm.org/docs).
88

99
### yarn
1010
```terminal
11-
yarn add @aureooms/js-lempel-ziv
11+
yarn add @compression-algorithm/lempel-ziv
1212
```
1313

1414
### npm
1515
```terminal
16-
npm install @aureooms/js-lempel-ziv --save
16+
npm install @compression-algorithm/lempel-ziv --save
1717
```
1818

1919
### jspm
2020
```terminal
21-
jspm install npm:@aureooms/js-lempel-ziv
21+
jspm install npm:@compression-algorithm/lempel-ziv
2222
```

doc/manual/usage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import 'regenerator-runtime/runtime.js' ;
1212

1313
Then, import the library where needed
1414
```js
15-
const lempelziv = require( '@aureooms/js-lempel-ziv' ) ;
15+
const lempelziv = require( '@compression-algorithm/lempel-ziv' ) ;
1616
// or
17-
import * as lempelziv from '@aureooms/js-lempel-ziv' ;
17+
import * as lempelziv from '@compression-algorithm/lempel-ziv' ;
1818
```

doc/scripts/header.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ domReady(function(){
1313

1414
var projectname = document.createElement('a');
1515
projectname.classList.add('project-name');
16-
projectname.text = 'aureooms/js-lempel-ziv';
16+
projectname.text = 'compression-algorithm/lempel-ziv';
1717
projectname.href = './index.html' ;
1818

1919
var header = document.getElementsByTagName('header')[0] ;
2020
header.insertBefore(projectname,header.firstChild);
2121

2222
var testlink = document.querySelector('header > a[data-ice="testLink"]') ;
23-
testlink.href = 'https://coveralls.io/github/aureooms/js-lempel-ziv' ;
23+
testlink.href = 'https://coveralls.io/github/compression-algorithm/lempel-ziv' ;
2424
testlink.target = '_BLANK' ;
2525

2626
var searchBox = document.querySelector('.search-box');

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"name": "@aureooms/js-lempel-ziv",
2+
"name": "@compression-algorithm/lempel-ziv",
33
"description": "Lempel-Ziv lossless data compression algorithms for JavaScript",
44
"version": "0.0.2",
5-
"author": "aureooms",
5+
"author": "make-github-pseudonymous-again",
66
"ava": {
77
"files": [
88
"test/src/**/*"
@@ -74,7 +74,7 @@
7474
}
7575
},
7676
"bugs": {
77-
"url": "https://github.com/aureooms/js-lempel-ziv/issues"
77+
"url": "https://github.com/compression-algorithm/lempel-ziv/issues"
7878
},
7979
"dependencies": {
8080
"@aureooms/js-persistent-stack": "^0.0.0",
@@ -105,7 +105,7 @@
105105
"files": [
106106
"lib"
107107
],
108-
"homepage": "https://aureooms.github.io/js-lempel-ziv",
108+
"homepage": "https://compression-algorithm.github.io/lempel-ziv",
109109
"keywords": [
110110
"compression",
111111
"lempel",
@@ -120,7 +120,7 @@
120120
},
121121
"repository": {
122122
"type": "git",
123-
"url": "https://github.com/aureooms/js-lempel-ziv"
123+
"url": "https://github.com/compression-algorithm/lempel-ziv"
124124
},
125125
"scripts": {
126126
"build": "babel --delete-dir-on-start --env-name production src -d lib",

0 commit comments

Comments
 (0)