forked from dubzzz/fast-check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.5 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "fast-check",
"version": "2.23.0",
"description": "Property based testing framework for JavaScript (like QuickCheck)",
"type": "commonjs",
"main": "lib/fast-check.js",
"exports": {
".": {
"require": "./lib/fast-check.js",
"default": "./lib/esm/fast-check.js"
}
},
"module": "lib/esm/fast-check.js",
"types": "lib/types/fast-check.d.ts",
"files": [
"lib",
"runkit.cjs"
],
"sideEffects": false,
"runkitExampleFilename": "runkit.cjs",
"scripts": {
"perf": "node perf/benchmark.js",
"profile": "node --prof --no-logfile-per-isolate --trace-deopt --trace-opt-verbose perf/profiler.js > deopt.out && node --prof-process v8.log > v8.out",
"prebuild": "node prebuild/prebuild.cjs",
"build": "tsc",
"build:watch": "tsc -w",
"build:publish-types": "tsc -p tsconfig.publish.types.json",
"build:publish-cjs": "tsc -p tsconfig.publish.json",
"build:publish-esm": "tsc -p tsconfig.publish.json --module es2015 --moduleResolution node --outDir lib/esm && cp package.esm-template.json lib/esm/package.json",
"build:prod": "yarn prebuild && yarn build:publish-cjs && yarn build:publish-esm && yarn build:publish-types && node postbuild/main.cjs",
"build:prod-ci": "cross-env EXPECT_GITHUB_SHA=true yarn build:prod",
"watch": "tsc -w",
"test": "jest --config jest.unit.config.cjs --coverage --verbose",
"test:watch": "jest --config jest.unit.config.cjs --watch",
"test:debug": "node --inspect node_modules/jest/bin/jest.js --config jest.unit.config.cjs --watch --runInBand",
"e2e": "jest --config jest.e2e.config.cjs --coverage --verbose",
"e2e:watch": "jest --config jest.e2e.config.cjs --watch",
"update:examples": "cross-env UPDATE_CODE_SNIPPETS=true jest --config jest.examples.config.cjs",
"docs": "api-extractor run --local && rm docs/fast-check.api.json && typedoc --out docs src/fast-check-default.ts && node postbuild/main.cjs",
"docs-ci": "cross-env EXPECT_GITHUB_SHA=true yarn docs",
"docs:serve": "npx serve docs/",
"format": "prettier --write \"**/*.{js,ts}\"",
"format:check": "prettier --list-different \"**/*.{js,ts}\"",
"lint": "eslint \"**/*.{js,ts}\" --fix",
"lint:check": "eslint \"**/*.{js,ts}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/dubzzz/fast-check.git"
},
"author": "Nicolas DUBIEN <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dubzzz/fast-check/issues"
},
"homepage": "https://github.com/dubzzz/fast-check#readme",
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"pure-rand": "^5.0.0"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.9.10",
"@types/jest": "^26.0.4",
"@types/node": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"benchmark": "^2.1.4",
"buffer": "^6.0.1",
"cross-env": "^7.0.2",
"eslint": "^7.1.0",
"eslint-config-prettier": "^8.1.0",
"jest": "^26.1.0",
"jscodeshift": "^0.13.0",
"mkdirp": "^1.0.4",
"prettier": "2.5.1",
"replace-in-file": "^6.0.0",
"source-map-support": "^0.5.19",
"ts-jest": "^26.2.0",
"typedoc": "^0.22.3",
"typescript": "^4.3.2"
},
"keywords": [
"property-based testing",
"end-to-end testing",
"unit testing",
"testing",
"quickcheck",
"jscheck",
"jsverify"
],
"tsd": {
"directory": "test/type"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/fast-check"
}
}