-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.09 KB
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
{
"name": "@pacote/jest-either",
"description": "Jest matcher for Either objects.",
"version": "5.0.9",
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"sideEffects": false,
"license": "MIT",
"author": {
"name": "Luís Rodrigues",
"email": "hello@goblindegook.com",
"url": "https://goblindegook.com"
},
"keywords": [
"jest",
"matcher",
"test",
"either",
"fp",
"functional programming"
],
"repository": "github:PacoteJS/pacote",
"bugs": {
"url": "https://github.com/PacoteJS/pacote/issues"
},
"publishConfig": {
"access": "public"
},
"module": "lib/index.js",
"typings": "lib/index.d.ts",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"build": "tsc",
"prepublish": "pnpm build"
},
"dependencies": {
"@pacote/is-plain-object": "file:../is-plain-object",
"jest-diff": "^30.0.0",
"jest-matcher-utils": "^30.0.0",
"ramda": "^0.30.0"
},
"peerDependencies": {
"fp-ts": "^2.0.0"
},
"gitHead": "bd3b251fc01a599034b03175c0cfab2d946f2f7f"
}