UNPKG

3.32 kBJSONView Raw
1{
2 "name": "fast-check",
3 "version": "3.17.2",
4 "description": "Property based testing framework for JavaScript (like QuickCheck)",
5 "type": "commonjs",
6 "main": "lib/fast-check.js",
7 "exports": {
8 "./package.json": "./package.json",
9 ".": {
10 "require": {
11 "types": "./lib/types/fast-check.d.ts",
12 "default": "./lib/fast-check.js"
13 },
14 "import": {
15 "types": "./lib/esm/types/fast-check.d.ts",
16 "default": "./lib/esm/fast-check.js"
17 }
18 }
19 },
20 "module": "lib/esm/fast-check.js",
21 "types": "lib/types/fast-check.d.ts",
22 "files": [
23 "lib",
24 "runkit.cjs"
25 ],
26 "sideEffects": false,
27 "runkitExampleFilename": "runkit.cjs",
28 "scripts": {
29 "build": "yarn build:publish-cjs && yarn build:publish-esm && yarn build:publish-types && node postbuild/main.cjs",
30 "build-ci": "cross-env EXPECT_GITHUB_SHA=true yarn build",
31 "build:publish-types": "tsc -p tsconfig.publish.types.json && tsc -p tsconfig.publish.types.json --outDir lib/esm/types",
32 "build:publish-cjs": "tsc -p tsconfig.publish.json",
33 "build:publish-esm": "tsc -p tsconfig.publish.json --module es2015 --moduleResolution node --outDir lib/esm && cp package.esm-template.json lib/esm/package.json",
34 "typecheck": "tsc --noEmit",
35 "test": "vitest --config vitest.unit.config.mjs",
36 "e2e": "vitest --config vitest.e2e.config.mjs",
37 "update:documentation": "cross-env UPDATE_CODE_SNIPPETS=true vitest --config vitest.documentation.config.mjs",
38 "test-bundle": "node test-bundle/run.cjs && node test-bundle/run.mjs && node test-bundle/run-advanced.cjs",
39 "test-legacy-bundle": "nvs add 8 && $(nvs which 8) test-bundle/run.cjs && $(nvs which 8) test-bundle/run-advanced.cjs",
40 "docs": "api-extractor run --local && rm docs/fast-check.api.json && typedoc --out docs src/fast-check-default.ts && node postbuild/main.cjs",
41 "docs-ci": "cross-env EXPECT_GITHUB_SHA=true yarn docs",
42 "docs:serve": "yarn dlx serve docs/"
43 },
44 "repository": {
45 "type": "git",
46 "url": "git+https://github.com/dubzzz/fast-check.git",
47 "directory": "packages/fast-check"
48 },
49 "author": "Nicolas DUBIEN <github@dubien.org>",
50 "license": "MIT",
51 "bugs": {
52 "url": "https://github.com/dubzzz/fast-check/issues"
53 },
54 "homepage": "https://fast-check.dev/",
55 "engines": {
56 "node": ">=8.0.0"
57 },
58 "dependencies": {
59 "pure-rand": "^6.1.0"
60 },
61 "devDependencies": {
62 "@fast-check/expect-type": "0.2.0",
63 "@fast-check/poisoning": "0.2.0",
64 "@microsoft/api-extractor": "^7.43.1",
65 "@types/node": "^20.12.7",
66 "@vitest/coverage-v8": "^1.5.0",
67 "cross-env": "^7.0.3",
68 "glob": "^10.3.12",
69 "not-node-buffer": "npm:buffer@^6.0.3",
70 "regexp-tree": "^0.1.27",
71 "replace-in-file": "^7.1.0",
72 "typedoc": "^0.25.13",
73 "typescript": "~5.4.5",
74 "vitest": "^1.5.0"
75 },
76 "keywords": [
77 "property-based testing",
78 "end-to-end testing",
79 "unit testing",
80 "testing",
81 "quickcheck",
82 "jscheck",
83 "jsverify",
84 "faker",
85 "fuzzer",
86 "fuzz",
87 "jest"
88 ],
89 "tsd": {
90 "directory": "test/type"
91 },
92 "funding": [
93 {
94 "type": "individual",
95 "url": "https://github.com/sponsors/dubzzz"
96 },
97 {
98 "type": "opencollective",
99 "url": "https://opencollective.com/fast-check"
100 }
101 ]
102}
\No newline at end of file