-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
96 lines (96 loc) · 2.85 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
{
"name": "idonttrustlikethat-fast-check",
"private": false,
"version": "0.0.56",
"type": "module",
"description": "idonttrustlikethat-fast-check is a plugin designed for fast-check. It convert idonttrustlikethat validators to fast-check arbitraries. Allowing the possibility to use idtlt validators with fast-check.",
"keywords": [
"idonttrustlikethat",
"idtlt",
"fast-check",
"@fast-check",
"plugin",
"validation",
"testing",
"property-based-testing",
"typescript"
],
"author": "Alexandre Oger <[email protected]>",
"engines": {
"node": ">=20.17.0"
},
"homepage": "https://github.com/nielk/idonttrustlikethat-fast-check#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/nielk/idonttrustlikethat-fast-check.git"
},
"bugs": {
"url": "https://github.com/nielk/idonttrustlikethat-fast-check/issues"
},
"files": [
"dist/**",
"README.md"
],
"main": "./dist/main.cjs",
"module": "./dist/main.js",
"exports": {
".": {
"types": "./dist/main.d.ts",
"import": "./dist/main.js",
"require": "./dist/main.cjs"
}
},
"typings": "./dist/main.d.ts",
"sideEffects": false,
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc && pnpm format && pnpm test && vite build",
"build:watch": "tsc && vite build --watch",
"lint": "./node_modules/.bin/eslint src test && pnpm prettier . --check && oxlint -A all",
"format": "./node_modules/.bin/eslint src test --fix && pnpm prettier . --write && oxlint -A all --fix",
"test": "vitest run --typecheck",
"test:watch": "vitest --typecheck",
"test:ui": "vitest --ui --typecheck --coverage.enabled=true",
"coverage": "vitest run --coverage",
"update:deps": "pnpm up --latest -i",
"prepublishOnly": "pnpm build",
"knip": "knip"
},
"peerDependencies": {
"fast-check": ">3.15.0 latest",
"idonttrustlikethat": ">2.1.0 latest"
},
"devDependencies": {
"@codecov/vite-plugin": "1.6.0",
"@eslint/compat": "1.2.4",
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.17.0",
"@rollup/plugin-typescript": "12.1.2",
"@types/eslint__js": "8.42.3",
"@types/node": "22.10.2",
"@typescript-eslint/eslint-plugin": "8.18.1",
"@typescript-eslint/parser": "8.18.1",
"@vitest/coverage-v8": "2.1.8",
"@vitest/ui": "2.1.8",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.2.1",
"fast-check": "3.23.2",
"globals": "15.14.0",
"idonttrustlikethat": "2.1.2",
"knip": "5.41.1",
"oxlint": "0.15.3",
"prettier": "3.4.2",
"rollup-plugin-typescript-paths": "1.5.0",
"tslib": "2.8.1",
"typescript": "5.7.2",
"typescript-eslint": "8.18.1",
"vite": "6.0.5",
"vitest": "2.1.8"
},
"resolutions": {
"braces": ">=3.0.3"
}
}