Skip to content

Commit 38c4b3c

Browse files
committed
fixup! fix package name
Signed-off-by: Miroslav Bajtoš <[email protected]>
1 parent 9514fb5 commit 38c4b3c

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

README.md

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

3-
A tiny helper to assert that response from `fetch()` is ok
3+
A tiny helper to assert that response from `fetch()` is ok.

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "tiny-json-rpc",
2+
"name": "assert-ok-response",
33
"version": "1.0.0",
4-
"description": "A tiny JSON RPC client",
4+
"description": "A tiny helper to assert that response from `fetch()` is ok.",
55
"type": "module",
66
"main": "index.js",
77
"scripts": {
@@ -13,14 +13,14 @@
1313
},
1414
"repository": {
1515
"type": "git",
16-
"url": "git+https://github.com/CheckerNetwork/tiny-json-rpc.git"
16+
"url": "git+https://github.com/CheckerNetwork/assert-ok-response.git"
1717
},
1818
"author": "",
1919
"license": "(Apache-2.0 AND MIT)",
2020
"bugs": {
21-
"url": "https://github.com/CheckerNetwork/tiny-json-rpc/issues"
21+
"url": "https://github.com/CheckerNetwork/assert-ok-response/issues"
2222
},
23-
"homepage": "https://github.com/CheckerNetwork/tiny-json-rpc#readme",
23+
"homepage": "https://github.com/CheckerNetwork/assert-ok-response#readme",
2424
"devDependencies": {
2525
"@types/node": "^22.13.10",
2626
"eslint": "^9.22.0",

test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { describe, it } from 'node:test'
22
import assert from 'node:assert'
33
import { createJsonRpcClient } from './index.js'
44

5-
describe('tiny-json-rpc', () => {
5+
describe('assert-ok-response', () => {
66
it('should create a JSON-RPC client', () => {
77
const client = createJsonRpcClient('http://example.com')
88
assert.ok(client)

0 commit comments

Comments
 (0)