27 lines
815 B
JSON
27 lines
815 B
JSON
{
|
|
"name": "ng-e2e-helpers",
|
|
"version": "1.0.0-dev.2",
|
|
"type": "module",
|
|
"description": "End-to-end testing machinery for a NextGraph application: mint and carry a wallet, cross the broker, per-run browser profiles, bounded waits that name what they were waiting for, and a run report whose size does not depend on what failed.",
|
|
"main": "./src/index.ts",
|
|
"types": "./src/index.ts",
|
|
"exports": {
|
|
".": "./src/index.ts"
|
|
},
|
|
"bin": {
|
|
"ng-mint-wallet": "./bin/mint-wallet.ts"
|
|
},
|
|
"peerDependencies": {
|
|
"playwright": ">=1.40.0",
|
|
"@ng-org/web": ">=0.1.2-alpha.13"
|
|
},
|
|
"devDependencies": {
|
|
"@ng-org/web": "0.1.2-alpha.13",
|
|
"playwright": "^1.61.1"
|
|
},
|
|
"scripts": {
|
|
"typecheck": "bunx tsc --noEmit -p tsconfig.json",
|
|
"mint-wallet": "bun run bin/mint-wallet.ts"
|
|
}
|
|
}
|