108 lines
3.3 KiB
JSON
108 lines
3.3 KiB
JSON
{
|
|
"name": "fast-check",
|
|
"version": "4.5.3",
|
|
"description": "Property based testing framework for JavaScript (like QuickCheck)",
|
|
"type": "module",
|
|
"main": "lib/fast-check.js",
|
|
"exports": {
|
|
"./package.json": "./package.json",
|
|
".": {
|
|
"require": {
|
|
"types@<5.7": "./lib/cjs/types57/fast-check.d.ts",
|
|
"types": "./lib/cjs/types/fast-check.d.ts",
|
|
"default": "./lib/cjs/fast-check.js"
|
|
},
|
|
"import": {
|
|
"types@<5.7": "./lib/types57/fast-check.d.ts",
|
|
"types": "./lib/types/fast-check.d.ts",
|
|
"default": "./lib/fast-check.js"
|
|
}
|
|
}
|
|
},
|
|
"module": "lib/fast-check.js",
|
|
"types": "lib/types/fast-check.d.ts",
|
|
"typesVersions": {
|
|
"<5.7": {
|
|
"lib/types/fast-check.d.ts": [
|
|
"lib/types57/fast-check.d.ts"
|
|
]
|
|
}
|
|
},
|
|
"files": [
|
|
"lib",
|
|
"runkit.cjs"
|
|
],
|
|
"sideEffects": false,
|
|
"runkitExampleFilename": "runkit.cjs",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/dubzzz/fast-check.git",
|
|
"directory": "packages/fast-check"
|
|
},
|
|
"author": "Nicolas DUBIEN <github@dubien.org>",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/dubzzz/fast-check/issues"
|
|
},
|
|
"homepage": "https://fast-check.dev/",
|
|
"engines": {
|
|
"node": ">=12.17.0"
|
|
},
|
|
"dependencies": {
|
|
"pure-rand": "^7.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@microsoft/api-extractor": "^7.55.2",
|
|
"@types/node": "^24.10.4",
|
|
"cross-env": "^10.1.0",
|
|
"glob": "^13.0.0",
|
|
"not-node-buffer": "npm:buffer@^6.0.3",
|
|
"regexp-tree": "^0.1.27",
|
|
"replace-in-file": "^8.4.0",
|
|
"typedoc": "^0.28.15",
|
|
"typescript": "~5.9.3",
|
|
"vitest": "^4.0.5",
|
|
"@fast-check/expect-type": "0.2.1",
|
|
"@fast-check/poisoning": "0.2.3",
|
|
"fast-check": "4.5.3"
|
|
},
|
|
"keywords": [
|
|
"property-based testing",
|
|
"end-to-end testing",
|
|
"unit testing",
|
|
"testing",
|
|
"quickcheck",
|
|
"jscheck",
|
|
"jsverify",
|
|
"faker",
|
|
"fuzzer",
|
|
"fuzz",
|
|
"jest"
|
|
],
|
|
"tsd": {
|
|
"directory": "test/type"
|
|
},
|
|
"funding": [
|
|
{
|
|
"type": "individual",
|
|
"url": "https://github.com/sponsors/dubzzz"
|
|
},
|
|
{
|
|
"type": "opencollective",
|
|
"url": "https://opencollective.com/fast-check"
|
|
}
|
|
],
|
|
"scripts": {
|
|
"build": "pnpm run build:publish-cjs && pnpm run build:publish-esm && pnpm run build:publish-types && node postbuild/main.mjs",
|
|
"build-ci": "cross-env EXPECT_GITHUB_SHA=true pnpm run build",
|
|
"build:publish-types": "tsc -p tsconfig.publish.types.json && tsc -p tsconfig.publish.types.json --outDir lib/cjs/types",
|
|
"build:publish-cjs": "tsc -p tsconfig.publish.json --outDir lib/cjs && cp package.cjs-template.json lib/cjs/package.json",
|
|
"build:publish-esm": "tsc -p tsconfig.publish.json --module es2015 --moduleResolution node",
|
|
"typecheck": "tsc --noEmit",
|
|
"test-bundle": "node test-bundle/run.cjs && node test-bundle/run.mjs && node test-bundle/run-advanced.cjs",
|
|
"test-legacy-bundle": "nvs add 12.17 && $(nvs which 12.17) test-bundle/run.cjs && $(nvs which 12.17) test-bundle/run-advanced.cjs",
|
|
"docs": "api-extractor run --local && rm docs/fast-check.api.json && typedoc --out docs src/fast-check-default.ts && node postbuild/main.mjs",
|
|
"docs-ci": "cross-env EXPECT_GITHUB_SHA=true pnpm run docs",
|
|
"docs:serve": "pnpm run dlx serve docs/"
|
|
}
|
|
} |