@fast-check/ava
Version:
Property based testing for AVA based on fast-check
76 lines • 1.78 kB
JSON
{
"name": "@fast-check/ava",
"description": "Property based testing for AVA based on fast-check",
"version": "3.0.1",
"type": "module",
"exports": {
"./package.json": "./package.json",
".": "./lib/ava-fast-check.js"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dubzzz/fast-check.git",
"directory": "packages/ava"
},
"author": "Nicolas DUBIEN <github@dubien.org>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dubzzz/fast-check/issues"
},
"homepage": "https://github.com/dubzzz/fast-check/tree/main/packages/ava#readme",
"dependencies": {
"fast-check": "^3.0.0 || ^4.0.0"
},
"peerDependencies": {
"ava": "^7.0.0 || ^8.0.0"
},
"devDependencies": {
"@types/node": "^24.12.3",
"ava": "^8.0.0",
"esm": "^3.2.25",
"rolldown": "^1.0.0",
"rxjs": "^7.8.2",
"typescript": "~6.0.3",
"vitest": "^4.1.0",
"@fast-check/ava": "3.0.1",
"fast-check": "4.8.0"
},
"keywords": [
"ava",
"generative",
"property-based testing",
"testing",
"quickcheck",
"fast-check"
],
"ava": {
"files": [
"test/**/*"
],
"require": [
"esm"
]
},
"funding": [
{
"type": "individual",
"url": "https://github.com/sponsors/dubzzz"
},
{
"type": "opencollective",
"url": "https://opencollective.com/fast-check"
}
],
"scripts": {
"build": "rolldown -c",
"build-ci": "rolldown -c",
"test": "vitest",
"test-bundle:cjs": "ava --config test-bundle/ava.config.cjs",
"test-bundle:mjs": "ava --config test-bundle/ava.config.mjs",
"test-bundle": "pnpm run test-bundle:cjs && pnpm run test-bundle:mjs",
"typecheck": "tsc --noEmit"
}
}