Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,23 @@ const firstJohn = db.where('name = John').first()
npm run build
```

## Testing

**Type check** — format, lint, and type-check:

```bash
deno task check
```

**Unit tests** — format/lint tests and run all tests:

```bash
deno task test
```

- Tests live under `tests/` (public API tests in `tests/jsonary.test.ts`).
- The test task uses `--allow-read`, `--allow-write`, and `--allow-env`.

## License

This project is licensed under the MIT license. See the [LICENSE](LICENSE) file for details.
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@neabyte/jsonary",
"description": "File-based JSON database for TypeScript, with a simple query builder",
"version": "1.0.1",
"version": "1.1.0",
"type": "module",
"license": "MIT",
"exports": "./src/index.ts",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@neabyte/jsonary",
"version": "1.0.1",
"version": "1.1.0",
"description": "File-based JSON database for TypeScript, with a simple query builder",
"type": "module",
"main": "dist/index.cjs",
Expand Down
Loading