forked from dubzzz/fast-check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 3.15 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
{
"name": "fast-check",
"version": "1.15.0",
"description": "Property based testing framework for JavaScript (like QuickCheck)",
"main": "lib/fast-check.js",
"module": "lib/esm/fast-check.js",
"types": "lib/types/fast-check.d.ts",
"typesVersions": {
">=3.2": {
"*": [
"lib/ts3.2/fast-check.d.ts"
]
}
},
"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": "ts-node prebuild/prebuild.ts",
"build": "tsc",
"build:publish-types": "tsc -p tsconfig.publish.types.json && node ./buildTypes.js",
"build:publish-cjs": "tsc -p tsconfig.publish.json",
"build:publish-esm": "tsc -p tsconfig.publish.json --module es2015 --moduleResolution node --outDir lib/esm",
"webbuild": "browserify lib/fast-check.js --s fastcheck | uglifyjs -cm > lib/bundle.js",
"watch": "tsc -w",
"test": "npm run build && jest --config jest.unit.config.js --coverage",
"e2e": "jest --config jest.e2e.config.js",
"test:rollup-esm": "rollup --config test/rollup/esm/rollup.config.js && node test/rollup/esm/dist/main.js",
"test:rollup-iife": "rollup --config test/rollup/iife/rollup.config.js && node test/rollup/iife/dist/main.js",
"coverage": "cat ./coverage/lcov.info | coveralls",
"docs": "mkdir -p docs/2-API && docsify-init --editDir documentation && cp -R documentation/* docs/ && api-extractor run --local && generate-ts-docs markdown -i docs/2-API -o docs/2-API && cat README.md | sed 's/https:\\/\\/github.com\\/dubzzz\\/fast-check\\/blob\\/master\\/documentation//g' > docs/README.md && markdownbars -i docs/_sidebar.md -o docs/_sidebar.md",
"format": "prettier --write \"**/*.{js,ts}\"",
"format:check": "prettier --list-different \"**/*.{js,ts}\"",
"lint": "tslint --project tsconfig.json --fix",
"lint:check": "tslint --project tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dubzzz/fast-check.git"
},
"author": "Nicolas DUBIEN <github@dubien.org>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dubzzz/fast-check/issues"
},
"homepage": "https://github.com/dubzzz/fast-check#readme",
"engines": {
"node": ">=0.12"
},
"dependencies": {
"pure-rand": "^1.6.2",
"tslib": "^1.9.3"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.1.1",
"@types/jest": "^24.0.12",
"@types/node": "^11.13.8",
"benchmark": "^2.1.4",
"browserify": "^16.2.3",
"coveralls": "^3.0.3",
"docsify-tools": "^1.0.18",
"jest": "^24.7.1",
"markdownbars": "^1.0.9",
"prettier": "1.17.0",
"rollup": "^1.10.1",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^4.2.3",
"source-map-support": "^0.5.12",
"ts-jest": "^24.0.2",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.4.5",
"uglifyjs": "^2.4.11"
},
"keywords": [
"property-based testing",
"end-to-end testing",
"unit testing",
"testing",
"quickcheck",
"jscheck",
"jsverify"
]
}