Skip to content

Commit 85d86a4

Browse files
committed
[meta] fix repo URLs
1 parent 20ea48d commit 85d86a4

File tree

2 files changed

+19
-19
lines changed

2 files changed

+19
-19
lines changed

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@
7272
},
7373
"repository": {
7474
"type": "git",
75-
"url": "git://github.com/substack/tape.git"
75+
"url": "git://github.com/ljharb/tape.git"
7676
},
77-
"homepage": "https://github.com/substack/tape",
77+
"homepage": "https://github.com/ljharb/tape",
7878
"keywords": [
7979
"tap",
8080
"test",
@@ -83,9 +83,9 @@
8383
"browser"
8484
],
8585
"author": {
86-
"name": "James Halliday",
87-
"email": "[email protected]",
88-
"url": "http://substack.net"
86+
"name": "Jordan Harband",
87+
"email": "[email protected]",
88+
"url": "http://ljharb.codes"
8989
},
9090
"license": "MIT"
9191
}

readme.markdown

+14-14
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ If you want a more colorful / pretty output there are lots of modules on npm tha
9898

9999
- [tap-spec](https://github.com/scottcorgan/tap-spec)
100100
- [tap-dot](https://github.com/scottcorgan/tap-dot)
101-
- [faucet](https://github.com/substack/faucet)
101+
- [faucet](https://github.com/ljharb/faucet)
102102
- [tap-bail](https://github.com/juliangruber/tap-bail)
103103
- [tap-browser-color](https://github.com/kirbysayshi/tap-browser-color)
104104
- [tap-json](https://github.com/gummesson/tap-json)
@@ -277,27 +277,27 @@ Aliases: `t.notEquals()`, `t.notStrictEqual()`, `t.notStrictEquals()`,
277277

278278
## t.deepEqual(actual, expected, msg)
279279

280-
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`.
280+
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`.
281281

282282
Aliases: `t.deepEquals()`, `t.isEquivalent()`, `t.same()`
283283

284284
## t.notDeepEqual(actual, expected, msg)
285285

286-
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`.
286+
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`.
287287

288288
Aliases: `t.notDeepEquals`, `t.notEquivalent()`, `t.notDeeply()`, `t.notSame()`,
289289
`t.isNotDeepEqual()`, `t.isNotDeeply()`, `t.isNotEquivalent()`,
290290
`t.isInequivalent()`
291291

292292
## t.deepLooseEqual(actual, expected, msg)
293293

294-
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`.
294+
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`.
295295

296296
Aliases: `t.looseEqual()`, `t.looseEquals()`
297297

298298
## t.notDeepLooseEqual(actual, expected, msg)
299299

300-
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`.
300+
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`.
301301

302302
Aliases: `t.notLooseEqual()`, `t.notLooseEquals()`
303303

@@ -557,17 +557,17 @@ test('third', function (t) {
557557
MIT
558558

559559
[package-url]: https://npmjs.org/package/tape
560-
[npm-version-svg]: https://versionbadg.es/substack/tape.svg
561-
[deps-svg]: https://david-dm.org/substack/tape.svg
562-
[deps-url]: https://david-dm.org/substack/tape
563-
[dev-deps-svg]: https://david-dm.org/substack/tape/dev-status.svg
564-
[dev-deps-url]: https://david-dm.org/substack/tape#info=devDependencies
560+
[npm-version-svg]: https://versionbadg.es/ljharb/tape.svg
561+
[deps-svg]: https://david-dm.org/ljharb/tape.svg
562+
[deps-url]: https://david-dm.org/ljharb/tape
563+
[dev-deps-svg]: https://david-dm.org/ljharb/tape/dev-status.svg
564+
[dev-deps-url]: https://david-dm.org/ljharb/tape#info=devDependencies
565565
[npm-badge-png]: https://nodei.co/npm/tape.png?downloads=true&stars=true
566566
[license-image]: https://img.shields.io/npm/l/tape.svg
567567
[license-url]: LICENSE
568568
[downloads-image]: https://img.shields.io/npm/dm/tape.svg
569569
[downloads-url]: https://npm-stat.com/charts.html?package=tape
570-
[codecov-image]: https://codecov.io/gh/substack/tape/branch/master/graphs/badge.svg
571-
[codecov-url]: https://app.codecov.io/gh/substack/tape/
572-
[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/substack/tape
573-
[actions-url]: https://github.com/substack/tape/actions
570+
[codecov-image]: https://codecov.io/gh/ljharb/tape/branch/master/graphs/badge.svg
571+
[codecov-url]: https://app.codecov.io/gh/ljharb/tape/
572+
[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/ljharb/tape
573+
[actions-url]: https://github.com/ljharb/tape/actions

0 commit comments

Comments
 (0)