-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.36 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
{
"name": "jsverify-to-fast-check",
"version": "0.0.3",
"description": "Set of tools and helpers to help JSVerify users to migrate to fast-check",
"main": "lib/jsverify-to-fast-check.js",
"types": "lib/jsverify-to-fast-check.d.ts",
"scripts": {
"build": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dubzzz/jsverify-to-fast-check.git"
},
"author": "Nicolas DUBIEN <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dubzzz/jsverify-to-fast-check/issues"
},
"homepage": "https://github.com/dubzzz/jsverify-to-fast-check#readme",
"devDependencies": {
"@types/jest": "^24.0.17",
"babel-jest": "^24.9.0",
"fast-check": "^1.16.0",
"jest": "^24.9.0",
"jsverify": "^0.8.4",
"pure-rand": "^1.6.2",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3"
},
"peerDependencies": {
"fast-check": ">=1.0.0",
"jsverify": ">=0.8.0"
},
"keywords": [
"jsverify",
"fast-check",
"migration",
"property-based-testing"
],
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testMatch": [
"**/test/*.+(ts|js)"
]
},
"dependencies": {
"tslib": "^1.10.0"
}
}