-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
65 lines (65 loc) · 1.31 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
{
"name": "jest-preset-moon",
"version": "3.0.2",
"description": "A modern Jest preset for tooling development.",
"keywords": [
"jest-preset",
"moon"
],
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"jest-preset.js",
"lib/**/*",
"src/**/*"
],
"repository": {
"type": "git",
"url": "git@github.com:moonrepo/dev.git",
"directory": "packages/jest-preset"
},
"author": "Miles Johnson",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.12.0"
},
"peerDependencies": {
"jest": ">=26.0.0"
},
"dependencies": {
"@moonrepo/dev": "^3.0.2",
"@types/jest": "^29.5.12",
"jest-circus": "^29.7.0",
"jest-environment-jsdom": "^29.7.0"
},
"devDependencies": {
"jest": "^29.7.0"
},
"funding": {
"type": "ko-fi",
"url": "https://ko-fi.com/milesjohnson"
},
"packemon": {
"inputs": {
"index": "src/index.ts",
"fileMock": "src/fileMock.ts"
},
"format": "lib",
"platform": "node"
},
"exports": {
"./package.json": "./package.json",
"./jest-preset": "./lib/index.js",
"./*": {
"types": "./lib/*.d.ts",
"default": "./lib/*.js"
},
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
}
}