Skip to content

Commit a9ae3c2

Browse files
committed
[meta] fix repo URLs
1 parent 74e6c9e commit a9ae3c2

File tree

2 files changed

+19
-19
lines changed

2 files changed

+19
-19
lines changed

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,9 @@
9393
},
9494
"repository": {
9595
"type": "git",
96-
"url": "git://github.com/substack/tape.git"
96+
"url": "git://github.com/ljharb/tape.git"
9797
},
98-
"homepage": "https://github.com/substack/tape",
98+
"homepage": "https://github.com/ljharb/tape",
9999
"keywords": [
100100
"tap",
101101
"test",
@@ -104,9 +104,9 @@
104104
"browser"
105105
],
106106
"author": {
107-
"name": "James Halliday",
108-
"email": "mail@substack.net",
109-
"url": "http://substack.net"
107+
"name": "Jordan Harband",
108+
"email": "ljharb@gmail.com",
109+
"url": "http://ljharb.codes"
110110
},
111111
"license": "MIT",
112112
"publishConfig": {

readme.markdown

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ If you want a more colorful / pretty output there are lots of modules on npm tha
102102

103103
- [tap-spec](https://github.com/scottcorgan/tap-spec)
104104
- [tap-dot](https://github.com/scottcorgan/tap-dot)
105-
- [faucet](https://github.com/substack/faucet)
105+
- [faucet](https://github.com/ljharb/faucet)
106106
- [tap-bail](https://github.com/juliangruber/tap-bail)
107107
- [tap-browser-color](https://github.com/kirbysayshi/tap-browser-color)
108108
- [tap-json](https://github.com/gummesson/tap-json)
@@ -292,25 +292,25 @@ Aliases: `t.notLooseEquals()`
292292

293293
## t.deepEqual(actual, expected, msg)
294294

295-
Assert that `actual` and `expected` have the same structure and nested values using [node's deepEqual() algorithm](https://github.com/substack/node-deep-equal) with strict comparisons (`===`) on leaf nodes and an optional description of the assertion `msg`.
295+
Assert that `actual` and `expected` have the same structure and nested values using [node's deepEqual() algorithm](https://github.com/inspect-js/node-deep-equal) with strict comparisons (`===`) on leaf nodes and an optional description of the assertion `msg`.
296296

297297
Aliases: `t.deepEquals()`, `t.isEquivalent()`, `t.same()`
298298

299299
## t.notDeepEqual(actual, expected, msg)
300300

301-
Assert that `actual` and `expected` do not have the same structure and nested values using [node's deepEqual() algorithm](https://github.com/substack/node-deep-equal) with strict comparisons (`===`) on leaf nodes and an optional description of the assertion `msg`.
301+
Assert that `actual` and `expected` do not have the same structure and nested values using [node's deepEqual() algorithm](https://github.com/inspect-js/node-deep-equal) with strict comparisons (`===`) on leaf nodes and an optional description of the assertion `msg`.
302302

303303
Aliases: `t.notDeepEquals`, `t.notEquivalent()`, `t.notDeeply()`, `t.notSame()`,
304304
`t.isNotDeepEqual()`, `t.isNotDeeply()`, `t.isNotEquivalent()`,
305305
`t.isInequivalent()`
306306

307307
## t.deepLooseEqual(actual, expected, msg)
308308

309-
Assert that `actual` and `expected` have the same structure and nested values using [node's deepEqual() algorithm](https://github.com/substack/node-deep-equal) with loose comparisons (`==`) on leaf nodes and an optional description of the assertion `msg`.
309+
Assert that `actual` and `expected` have the same structure and nested values using [node's deepEqual() algorithm](https://github.com/inspect-js/node-deep-equal) with loose comparisons (`==`) on leaf nodes and an optional description of the assertion `msg`.
310310

311311
## t.notDeepLooseEqual(actual, expected, msg)
312312

313-
Assert that `actual` and `expected` do not have the same structure and nested values using [node's deepEqual() algorithm](https://github.com/substack/node-deep-equal) with loose comparisons (`==`) on leaf nodes and an optional description of the assertion `msg`.
313+
Assert that `actual` and `expected` do not have the same structure and nested values using [node's deepEqual() algorithm](https://github.com/inspect-js/node-deep-equal) with loose comparisons (`==`) on leaf nodes and an optional description of the assertion `msg`.
314314

315315
Aliases: `t.notLooseEqual()`, `t.notLooseEquals()`
316316

@@ -570,17 +570,17 @@ test('third', function (t) {
570570
MIT
571571

572572
[package-url]: https://npmjs.org/package/tape
573-
[npm-version-svg]: https://versionbadg.es/substack/tape.svg
574-
[deps-svg]: https://david-dm.org/substack/tape.svg
575-
[deps-url]: https://david-dm.org/substack/tape
576-
[dev-deps-svg]: https://david-dm.org/substack/tape/dev-status.svg
577-
[dev-deps-url]: https://david-dm.org/substack/tape#info=devDependencies
573+
[npm-version-svg]: https://versionbadg.es/ljharb/tape.svg
574+
[deps-svg]: https://david-dm.org/ljharb/tape.svg
575+
[deps-url]: https://david-dm.org/ljharb/tape
576+
[dev-deps-svg]: https://david-dm.org/ljharb/tape/dev-status.svg
577+
[dev-deps-url]: https://david-dm.org/ljharb/tape#info=devDependencies
578578
[npm-badge-png]: https://nodei.co/npm/tape.png?downloads=true&stars=true
579579
[license-image]: https://img.shields.io/npm/l/tape.svg
580580
[license-url]: LICENSE
581581
[downloads-image]: https://img.shields.io/npm/dm/tape.svg
582582
[downloads-url]: https://npm-stat.com/charts.html?package=tape
583-
[codecov-image]: https://codecov.io/gh/substack/tape/branch/master/graphs/badge.svg
584-
[codecov-url]: https://app.codecov.io/gh/substack/tape/
585-
[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/substack/tape
586-
[actions-url]: https://github.com/substack/tape/actions
583+
[codecov-image]: https://codecov.io/gh/ljharb/tape/branch/master/graphs/badge.svg
584+
[codecov-url]: https://app.codecov.io/gh/ljharb/tape/
585+
[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/ljharb/tape
586+
[actions-url]: https://github.com/ljharb/tape/actions

0 commit comments

Comments
 (0)