genosdb 0.12.6 → 0.12.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +3 -6
package/README.md CHANGED
@@ -13,7 +13,7 @@ A lightweight, decentralized graph database designed for modern web applications
13
13
 
14
14
  ![Downloads on NPM](https://img.shields.io/npm/dw/genosdb)
15
15
  [![](https://data.jsdelivr.com/v1/package/npm/genosdb/badge)](https://www.jsdelivr.com/package/npm/genosdb)
16
- [![Tests](https://github.com/estebanrfp/gdb/actions/workflows/test.yml/badge.svg)](https://estebanrfp.github.io/gdb/tests/html/test-results.html)
16
+ [![Tests](https://img.shields.io/badge/Tests-passing-brightgreen)](https://estebanrfp.github.io/gdb/tests/report.html)
17
17
 
18
18
  ![Project Status](https://img.shields.io/badge/status-stable--beta-blue)
19
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "genosdb",
3
- "version": "0.12.6",
3
+ "version": "0.12.7",
4
4
  "description": "GenosDB (GDB): distributed graph database in real-time, peer-to-peer, scalable storage - efficient querying of complex relationships.",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -13,7 +13,7 @@
13
13
  "scripts": {
14
14
  "build": "bun esbun.js",
15
15
  "dev": "bun run --watch",
16
- "test": "vitest run --pool=threads --maxWorkers=1 --reporter=verbose --reporter=html --outputFile=tests/html/test-results.html"
16
+ "test": "bash tests/run.sh"
17
17
  },
18
18
  "files": [
19
19
  "dist"
@@ -53,13 +53,10 @@
53
53
  "pako": "2.1.0"
54
54
  },
55
55
  "devDependencies": {
56
- "@vitest/ui": "4.0.9",
57
56
  "eslint": "9.39.1",
58
57
  "eslint-config-standard": "17.1.0",
59
58
  "eslint-plugin-import": "2.32.0",
60
59
  "eslint-plugin-n": "17.23.1",
61
- "eslint-plugin-promise": "7.2.1",
62
- "jsdom": "27.2.0",
63
- "vitest": "4.0.9"
60
+ "eslint-plugin-promise": "7.2.1"
64
61
  }
65
62
  }