@rotorsoft/act-pg 1.9.0 → 1.9.1
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.
- package/package.json +9 -3
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rotorsoft/act-pg",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.9.
|
|
4
|
+
"version": "1.9.1",
|
|
5
5
|
"description": "act pg adapters",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"typescript",
|
|
@@ -50,13 +50,19 @@
|
|
|
50
50
|
"@rotorsoft/act": "^1.16.0"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
+
"@stryker-mutator/core": "^9.6.1",
|
|
54
|
+
"@stryker-mutator/vitest-runner": "^9.6.1",
|
|
53
55
|
"@types/pg": "^8.20.0",
|
|
54
|
-
"@rotorsoft/act-tck": "^1.
|
|
56
|
+
"@rotorsoft/act-tck": "^1.17.0"
|
|
55
57
|
},
|
|
56
58
|
"scripts": {
|
|
57
59
|
"clean": "rm -rf dist",
|
|
58
60
|
"types": "tsc --build tsconfig.build.json --emitDeclarationOnly",
|
|
59
61
|
"build": "pnpm clean && tsup && pnpm types",
|
|
60
|
-
"
|
|
62
|
+
"mutation": "stryker run",
|
|
63
|
+
"stress": "tsx test/stress/runner.ts",
|
|
64
|
+
"bench:run": "NODE_ENV=test LOG_LEVEL=fatal tsx scripts/perf-bench.ts > perf-result.json",
|
|
65
|
+
"bench:check": "tsx scripts/perf-check.ts",
|
|
66
|
+
"bench:update": "NODE_ENV=test LOG_LEVEL=fatal tsx scripts/perf-bench.ts > perf-baseline.json"
|
|
61
67
|
}
|
|
62
68
|
}
|