@evervault/eql 0.2.1 → 0.2.3

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 (1) hide show
  1. package/package.json +6 -7
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evervault/eql",
3
- "version": "0.2.1",
3
+ "version": "0.2.3",
4
4
  "private": false,
5
5
  "author": "Evervault (https://evervault.com)",
6
6
  "license": "MIT",
@@ -16,17 +16,16 @@
16
16
  "dist"
17
17
  ],
18
18
  "devDependencies": {
19
- "@types/node": "^22",
20
- "chai": "^4.4.1",
21
- "mocha": "^9.2.2",
22
- "peggy": "^4.0.2"
19
+ "@types/node": "^24",
20
+ "peggy": "^4.0.2",
21
+ "vitest": "^4.0.18"
23
22
  },
24
23
  "scripts": {
25
24
  "build:cjs": "peggy -o dist/index.js --format commonjs src/grammar.peggy",
26
25
  "build:esm": "peggy -o dist/index.mjs --format es src/grammar.peggy",
27
26
  "build": "pnpm run build:cjs && pnpm run build:esm",
28
- "clean": "rm -rf .turbo node_modules dist",
27
+ "clean": "rm -rf node_modules dist",
29
28
  "prepublish": "pnpm run build",
30
- "test": "mocha 'src/**/*.test.js'"
29
+ "test": "vitest run"
31
30
  }
32
31
  }