-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
131 lines (131 loc) · 3.75 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "effect-ts-laws",
"version": "1.1.19",
"description": "Law testing using fast-check.",
"type": "module",
"author": "Ran Eilam <[email protected]> (https://middle-ages.github.io/)",
"homepage": "https://github.com/middle-ages/effect-ts-laws",
"bugs": "https://github.com/middle-ages/effect-ts-laws/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/middle-ages/effect-ts-laws.git"
},
"license": "ISC",
"keywords": [
"effect-ts",
"fast-check",
"law-testing",
"property-testing"
],
"scripts": {
"clean": "dev/clean",
"lint": "eslint --config config/eslint.config.js src index.ts tests",
"lint-fix": "eslint --config config/eslint.config.js --fix src index.ts tests",
"typecheck-src": "tsc --project config/tsconfig.build.json --noEmit",
"typecheck-tests": "tsc --project tests/tsconfig.json --noEmit",
"typecheck": "pnpm typecheck-src && pnpm typecheck-tests",
"test": "vitest -c config/vitest.config.ts --reporter=verbose",
"coverage": "vitest -c config/vitest.config.ts run --reporter=verbose --coverage",
"circular": "depcruise src index.ts -c config/dependency-cruiser.cjs",
"graph-dependencies": "dev/graph-dependencies",
"test-run": "vitest -c config/vitest.config.ts run",
"build": "tsc --project config/tsconfig.build.json",
"build-tests": "tsc --project tests/tsconfig.json",
"build-latex": "dev/build-latex",
"build-docs": "dev/build-docs",
"prepare-stryker": "dev/prepare-stryker",
"ls-deps": "pnpm ls --prod",
"ls-deps-dev": "pnpm ls --dev",
"publish-docs": "dev/publish-docs",
"npm": "dev/publish"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@fast-check/vitest": "^0.1.3",
"@stryker-mutator/core": "^8.6.0",
"@stryker-mutator/typescript-checker": "^8.6.0",
"@stryker-mutator/vitest-runner": "^8.6.0",
"@tsconfig/node-lts": "^20.1.3",
"@tsconfig/strictest": "^2.0.5",
"@types/eslint__eslintrc": "^2.1.2",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.7.6",
"@vitest/coverage-v8": "^2.1.3",
"@vitest/ui": "^2.1.3",
"dependency-cruiser": "^16.4.2",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"fast-check": "^3.22.0",
"prettier": "^3.3.3",
"tsx": "^4.19.1",
"typedoc": "^0.26.10",
"typescript": "^5.6.3",
"typescript-eslint": "^8.10.0",
"vite": "^5.4.9",
"vitest": "^2.1.3"
},
"dependencies": {
"@effect/typeclass": "^0.28.2",
"effect": "^3.9.2"
},
"peerDependencies": {
"@effect/typeclass": "workspace:^",
"@fast-check/vitest": "workspace:^",
"effect": "workspace:^",
"fast-check": "workspace:^",
"vitest": "workspace:^"
},
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"arrowParens": "avoid",
"bracketSpacing": false,
"bracketSameLine": true,
"endOfLine": "lf"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20.0.0"
},
"exports": {
".": {
"import": {
"types": "./index.d.ts",
"import": "./index.js"
}
},
"./vitest": {
"import": {
"types": "./src/vitest.d.ts",
"import": "./src/vitest.js"
}
},
"./law": {
"import": {
"types": "./src/law.d.ts",
"import": "./src/law.js"
}
},
"./arbitrary": {
"import": {
"types": "./src/arbitrary.d.ts",
"import": "./src/arbitrary.js"
}
},
"./compose": {
"import": {
"types": "./src/compose.d.ts",
"import": "./src/compose.js"
}
},
"./laws": {
"import": {
"types": "./src/laws.d.ts",
"import": "./src/laws.js"
}
}
}
}