Skip to content

Commit

Permalink
minor reword
Browse files Browse the repository at this point in the history
  • Loading branch information
cressie176 committed May 11, 2024
1 parent 8d870a7 commit f4ebc2a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{
"name": "oubliette",
"version": "1.0.2",
"description": "A programmatic api for npm",
"description": "A programmatic interface for npm",
"main": "index.js",
"keywords": [
"npm",
"programmatic",
"interface",
"api",
"command",
"typescript",
Expand Down Expand Up @@ -50,4 +51,4 @@
},
"homepage": "https://acuminous.github.io/oubliette",
"types": "./index.d.ts"
}
}
4 changes: 2 additions & 2 deletions test/oubliette-async.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ describe('Async API', () => {
const output = await npm().ls({ omit: 'dev', json: true, long: undefined });
const report = JSON.parse(output);
eq(Object.keys(report).includes('dependencies'), false);
eq(report.description, 'A programmatic api for npm');
eq(report.description, 'A programmatic interface for npm');
});

it('should support commands with hyphens', async () => {
Expand All @@ -42,7 +42,7 @@ describe('Async API', () => {
const format = formats.jsonFormat;
const report = await npm({ format }).ls({ omit: 'dev', json: true, long: undefined });
eq(Object.keys(report).includes('dependencies'), false);
eq(report.description, 'A programmatic api for npm');
eq(report.description, 'A programmatic interface for npm');
});

it('should format output as a buffer', async () => {
Expand Down
4 changes: 2 additions & 2 deletions test/oubliette-sync.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ describe('Sync API', () => {
const output = npm().ls({ omit: 'dev', json: true, long: undefined });
const report = JSON.parse(output);
eq(Object.keys(report).includes('dependencies'), false);
eq(report.description, 'A programmatic api for npm');
eq(report.description, 'A programmatic interface for npm');
});

it('should support commands with hyphens', () => {
Expand All @@ -42,7 +42,7 @@ describe('Sync API', () => {
const format = formats.jsonFormat;
const report = npm({ format }).ls({ omit: 'dev', json: true, long: undefined });
eq(Object.keys(report).includes('dependencies'), false);
eq(report.description, 'A programmatic api for npm');
eq(report.description, 'A programmatic interface for npm');
});

it('should format output as a buffer', async () => {
Expand Down

0 comments on commit f4ebc2a

Please sign in to comment.