Skip to content

Commit 1ac9175

Browse files
😒 chore: Fix broken links, badges, and dependencies.
1 parent b359d03 commit 1ac9175

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
==
33

44
Python's heap and priority queue library for JavaScript. Parents are
5-
[js-data-structures](https://github.com/aureooms/js-data-structures)
5+
[js-data-structures](https://github.com/make-github-pseudonymous-again/js-data-structures)
66
and
7-
[aureooms/js-heap](https://github.com/aureooms/js-heap).
7+
[aureooms/js-heap](https://github.com/make-github-pseudonymous-again/js-heap).
88

99

1010
```js
@@ -20,18 +20,18 @@ let {
2020
} = heapq ;
2121
```
2222

23-
[![License](https://img.shields.io/github/license/aureooms/js-heapq.svg)](https://raw.githubusercontent.com/aureooms/js-heapq/master/LICENSE)
23+
[![License](https://img.shields.io/github/license/make-github-pseudonymous-again/js-heapq.svg)](https://raw.githubusercontent.com/make-github-pseudonymous-again/js-heapq/master/LICENSE)
2424
[![Version](https://img.shields.io/npm/v/@aureooms/js-heapq.svg)](https://www.npmjs.org/package/@aureooms/js-heapq)
25-
[![Build](https://img.shields.io/travis/aureooms/js-heapq/master.svg)](https://travis-ci.org/aureooms/js-heapq/branches)
26-
[![Dependencies](https://img.shields.io/david/aureooms/js-heapq.svg)](https://david-dm.org/aureooms/js-heapq)
27-
[![Dev dependencies](https://img.shields.io/david/dev/aureooms/js-heapq.svg)](https://david-dm.org/aureooms/js-heapq?type=dev)
28-
[![GitHub issues](https://img.shields.io/github/issues/aureooms/js-heapq.svg)](https://github.com/aureooms/js-heapq/issues)
25+
[![Build](https://img.shields.io/travis/make-github-pseudonymous-again/js-heapq/master.svg)](https://travis-ci.org/make-github-pseudonymous-again/js-heapq/branches)
26+
[![Dependencies](https://img.shields.io/david/make-github-pseudonymous-again/js-heapq.svg)](https://david-dm.org/make-github-pseudonymous-again/js-heapq)
27+
[![Dev dependencies](https://img.shields.io/david/dev/make-github-pseudonymous-again/js-heapq.svg)](https://david-dm.org/make-github-pseudonymous-again/js-heapq?type=dev)
28+
[![GitHub issues](https://img.shields.io/github/issues/make-github-pseudonymous-again/js-heapq.svg)](https://github.com/make-github-pseudonymous-again/js-heapq/issues)
2929
[![Downloads](https://img.shields.io/npm/dm/@aureooms/js-heapq.svg)](https://www.npmjs.org/package/@aureooms/js-heapq)
3030

31-
[![Code issues](https://img.shields.io/codeclimate/issues/aureooms/js-heapq.svg)](https://codeclimate.com/github/aureooms/js-heapq/issues)
32-
[![Code maintainability](https://img.shields.io/codeclimate/maintainability/aureooms/js-heapq.svg)](https://codeclimate.com/github/aureooms/js-heapq/trends/churn)
33-
[![Code coverage (cov)](https://img.shields.io/codecov/c/gh/aureooms/js-heapq/master.svg)](https://codecov.io/gh/aureooms/js-heapq)
34-
[![Code technical debt](https://img.shields.io/codeclimate/tech-debt/aureooms/js-heapq.svg)](https://codeclimate.com/github/aureooms/js-heapq/trends/technical_debt)
31+
[![Code issues](https://img.shields.io/codeclimate/issues/make-github-pseudonymous-again/js-heapq.svg)](https://codeclimate.com/github/make-github-pseudonymous-again/js-heapq/issues)
32+
[![Code maintainability](https://img.shields.io/codeclimate/maintainability/make-github-pseudonymous-again/js-heapq.svg)](https://codeclimate.com/github/make-github-pseudonymous-again/js-heapq/trends/churn)
33+
[![Code coverage (cov)](https://img.shields.io/codecov/c/gh/make-github-pseudonymous-again/js-heapq/master.svg)](https://codecov.io/gh/make-github-pseudonymous-again/js-heapq)
34+
[![Code technical debt](https://img.shields.io/codeclimate/tech-debt/make-github-pseudonymous-again/js-heapq.svg)](https://codeclimate.com/github/make-github-pseudonymous-again/js-heapq/trends/technical_debt)
3535
[![Documentation](https://make-github-pseudonymous-again.github.io/js-heapq/badge.svg)](https://make-github-pseudonymous-again.github.io/js-heapq/source.html)
3636
[![Package size](https://img.shields.io/bundlephobia/minzip/@aureooms/js-heapq)](https://bundlephobia.com/result?p=@aureooms/js-heapq)
3737

doc/scripts/header.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ domReady(function(){
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-heapq' ;
23+
testlink.href = 'https://coveralls.io/github/make-github-pseudonymous-again/js-heapq' ;
2424
testlink.target = '_BLANK' ;
2525

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

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
}
2525
},
2626
"bugs": {
27-
"url": "https://github.com/aureooms/js-heapq/issues"
27+
"url": "https://github.com/make-github-pseudonymous-again/js-heapq/issues"
2828
},
2929
"dependencies": {
3030
"@aureooms/js-compare": "^1.4.5",
@@ -61,7 +61,7 @@
6161
"license": "AGPL-3.0",
6262
"main": "lib/index.js",
6363
"repository": {
64-
"url": "https://github.com/aureooms/js-heapq.git",
64+
"url": "https://github.com/make-github-pseudonymous-again/js-heapq.git",
6565
"type": "git"
6666
},
6767
"scripts": {

0 commit comments

Comments
 (0)