Skip to content

Commit cf05307

Browse files
😒 chore: Rename package.
1 parent f8c6f57 commit cf05307

File tree

7 files changed

+33
-33
lines changed

7 files changed

+33
-33
lines changed

.esdoc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"autoPrivate": true
1818
},
1919
"brand": {
20-
"title": "@aureooms/js-maximum-matching"
20+
"title": "@graph-algorithm/maximum-matching"
2121
},
2222
"test": {
2323
"type": "ava",

README.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,38 @@
1-
:cherry_blossom: [@aureooms/js-maximum-matching](https://make-github-pseudonymous-again.github.io/js-maximum-matching)
1+
:cherry_blossom: [@graph-algorithm/maximum-matching](https://graph-algorithm.github.io/maximum-matching)
22
==
33

44
Maximum matching algorithms for JavaScript.
5-
Parent is [@aureooms/js-gn](https://github.com/make-github-pseudonymous-again/js-gn).
6-
See [docs](https://make-github-pseudonymous-again.github.io/js-maximum-matching/index.html).
5+
Parent is [js-algorithms](https://github.com/make-github-pseudonymous-again/js-algorithms).
6+
See [docs](https://graph-algorithm.github.io/maximum-matching/index.html).
77

88
```js
9-
import maximumMatching, {iter} from '@aureooms/js-maximum-matching';
9+
import maximumMatching, {iter} from '@graph-algorithm/maximum-matching';
1010
const edges = [[1, 2, 10], [2, 3, 11]] ;
1111
const matching = maximumMatching(edges) ; // [-1, -1, 3, 2]
1212
[...iter(matching)]; // [ [2, 3] ]
1313

14-
import maximumCardinalityMatching from '@aureooms/js-maximum-matching/cardinality';
14+
import maximumCardinalityMatching from '@graph-algorithm/maximum-matching/cardinality';
1515
for (const edge of iter(maximumCardinalityMatching([[1, 2], [2, 3], [3, 4]]))) {
1616
console.log(edge);
1717
}
1818
// [1,2]
1919
// [3,4]
2020
```
2121

22-
[![License](https://img.shields.io/github/license/make-github-pseudonymous-again/js-maximum-matching.svg)](https://raw.githubusercontent.com/make-github-pseudonymous-again/js-maximum-matching/main/LICENSE)
23-
[![Version](https://img.shields.io/npm/v/@aureooms/js-maximum-matching.svg)](https://www.npmjs.org/package/@aureooms/js-maximum-matching)
24-
[![Tests](https://img.shields.io/github/workflow/status/make-github-pseudonymous-again/js-maximum-matching/ci:test?event=push&label=tests)](https://github.com/make-github-pseudonymous-again/js-maximum-matching/actions/workflows/ci:test.yml?query=branch:main)
25-
[![Dependencies](https://img.shields.io/david/make-github-pseudonymous-again/js-maximum-matching.svg)](https://david-dm.org/make-github-pseudonymous-again/js-maximum-matching)
26-
[![Dev dependencies](https://img.shields.io/david/dev/make-github-pseudonymous-again/js-maximum-matching.svg)](https://david-dm.org/make-github-pseudonymous-again/js-maximum-matching?type=dev)
27-
[![GitHub issues](https://img.shields.io/github/issues/make-github-pseudonymous-again/js-maximum-matching.svg)](https://github.com/make-github-pseudonymous-again/js-maximum-matching/issues)
28-
[![Downloads](https://img.shields.io/npm/dm/@aureooms/js-maximum-matching.svg)](https://www.npmjs.org/package/@aureooms/js-maximum-matching)
29-
30-
[![Code issues](https://img.shields.io/codeclimate/issues/make-github-pseudonymous-again/js-maximum-matching.svg)](https://codeclimate.com/github/make-github-pseudonymous-again/js-maximum-matching/issues)
31-
[![Code maintainability](https://img.shields.io/codeclimate/maintainability/make-github-pseudonymous-again/js-maximum-matching.svg)](https://codeclimate.com/github/make-github-pseudonymous-again/js-maximum-matching/trends/churn)
32-
[![Code coverage (cov)](https://img.shields.io/codecov/c/gh/make-github-pseudonymous-again/js-maximum-matching/main.svg)](https://codecov.io/gh/make-github-pseudonymous-again/js-maximum-matching)
33-
[![Code technical debt](https://img.shields.io/codeclimate/tech-debt/make-github-pseudonymous-again/js-maximum-matching.svg)](https://codeclimate.com/github/make-github-pseudonymous-again/js-maximum-matching/trends/technical_debt)
34-
[![Documentation](https://make-github-pseudonymous-again.github.io/js-maximum-matching/badge.svg)](https://make-github-pseudonymous-again.github.io/js-maximum-matching/source.html)
35-
[![Package size](https://img.shields.io/bundlephobia/minzip/@aureooms/js-maximum-matching)](https://bundlephobia.com/result?p=@aureooms/js-maximum-matching)
22+
[![License](https://img.shields.io/github/license/graph-algorithm/maximum-matching.svg)](https://raw.githubusercontent.com/graph-algorithm/maximum-matching/main/LICENSE)
23+
[![Version](https://img.shields.io/npm/v/@graph-algorithm/maximum-matching.svg)](https://www.npmjs.org/package/@graph-algorithm/maximum-matching)
24+
[![Tests](https://img.shields.io/github/workflow/status/graph-algorithm/maximum-matching/ci:test?event=push&label=tests)](https://github.com/graph-algorithm/maximum-matching/actions/workflows/ci:test.yml?query=branch:main)
25+
[![Dependencies](https://img.shields.io/david/graph-algorithm/maximum-matching.svg)](https://david-dm.org/graph-algorithm/maximum-matching)
26+
[![Dev dependencies](https://img.shields.io/david/dev/graph-algorithm/maximum-matching.svg)](https://david-dm.org/graph-algorithm/maximum-matching?type=dev)
27+
[![GitHub issues](https://img.shields.io/github/issues/graph-algorithm/maximum-matching.svg)](https://github.com/graph-algorithm/maximum-matching/issues)
28+
[![Downloads](https://img.shields.io/npm/dm/@graph-algorithm/maximum-matching.svg)](https://www.npmjs.org/package/@graph-algorithm/maximum-matching)
29+
30+
[![Code issues](https://img.shields.io/codeclimate/issues/graph-algorithm/maximum-matching.svg)](https://codeclimate.com/github/graph-algorithm/maximum-matching/issues)
31+
[![Code maintainability](https://img.shields.io/codeclimate/maintainability/graph-algorithm/maximum-matching.svg)](https://codeclimate.com/github/graph-algorithm/maximum-matching/trends/churn)
32+
[![Code coverage (cov)](https://img.shields.io/codecov/c/gh/graph-algorithm/maximum-matching/main.svg)](https://codecov.io/gh/graph-algorithm/maximum-matching)
33+
[![Code technical debt](https://img.shields.io/codeclimate/tech-debt/graph-algorithm/maximum-matching.svg)](https://codeclimate.com/github/graph-algorithm/maximum-matching/trends/technical_debt)
34+
[![Documentation](https://graph-algorithm.github.io/maximum-matching/badge.svg)](https://graph-algorithm.github.io/maximum-matching/source.html)
35+
[![Package size](https://img.shields.io/bundlephobia/minzip/@graph-algorithm/maximum-matching)](https://bundlephobia.com/result?p=@graph-algorithm/maximum-matching)
3636

3737
## :clap: Credits
3838

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/make-github-pseudonymous-again/js-maximum-matching/tree/main/test/src).
3+
> More examples in [the test files](https://github.com/graph-algorithm/maximum-matching/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-maximum-matching
11+
yarn add @graph-algorithm/maximum-matching
1212
```
1313

1414
### npm
1515
```terminal
16-
npm install @aureooms/js-maximum-matching --save
16+
npm install @graph-algorithm/maximum-matching --save
1717
```
1818

1919
### jspm
2020
```terminal
21-
jspm install npm:@aureooms/js-maximum-matching
21+
jspm install npm:@graph-algorithm/maximum-matching
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 mm = require( '@aureooms/js-maximum-matching' ) ;
15+
const mm = require( '@graph-algorithm/maximum-matching' ) ;
1616
// or
17-
import * as mm from '@aureooms/js-maximum-matching' ;
17+
import * as mm from '@graph-algorithm/maximum-matching' ;
1818
```

doc/scripts/header.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ const domReady = function (callback) {
1010
domReady(() => {
1111
const projectname = document.createElement('a');
1212
projectname.classList.add('project-name');
13-
projectname.text = 'aureooms/js-maximum-matching';
13+
projectname.text = 'graph-algorithm/maximum-matching';
1414
projectname.href = './index.html';
1515

1616
const header = document.querySelector('header');
1717
header.insertBefore(projectname, header.firstChild);
1818

1919
const testlink = document.querySelector('header > a[data-ice="testLink"]');
2020
testlink.href =
21-
'https://coveralls.io/github/make-github-pseudonymous-again/js-maximum-matching';
21+
'https://coveralls.io/github/graph-algorithm/maximum-matching';
2222
testlink.target = '_BLANK';
2323

2424
const searchBox = document.querySelector('.search-box');

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
2-
"name": "@aureooms/js-maximum-matching",
2+
"name": "@graph-algorithm/maximum-matching",
33
"description": "Maximum matching algorithms for JavaScript",
44
"version": "2.0.0",
55
"license": "AGPL-3.0",
6-
"author": "aureooms",
7-
"homepage": "https://make-github-pseudonymous-again.github.io/js-maximum-matching",
6+
"author": "make-github-pseudonymous-again",
7+
"homepage": "https://graph-algorithm.github.io/maximum-matching",
88
"repository": {
99
"type": "git",
10-
"url": "https://github.com/make-github-pseudonymous-again/js-maximum-matching"
10+
"url": "https://github.com/graph-algorithm/maximum-matching"
1111
},
1212
"bugs": {
13-
"url": "https://github.com/make-github-pseudonymous-again/js-maximum-matching/issues"
13+
"url": "https://github.com/graph-algorithm/maximum-matching/issues"
1414
},
1515
"keywords": [
1616
"algorithm",

0 commit comments

Comments
 (0)