-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.39 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.39 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
52
53
54
55
56
57
58
{
"name": "@bedrockio/fixtures",
"version": "1.5.0",
"type": "module",
"description": "Bedrock mock objects for testing and development.",
"scripts": {
"test": "jest",
"lint": "eslint",
"build": "scripts/build",
"eject": "scripts/eject.js",
"prepublishOnly": "yarn build"
},
"main": "dist/cjs/index.js",
"module": "src/index.js",
"contributors": [
{
"name": "Andrew Plummer",
"email": "andrew@rekall.ai"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bedrockio/fixtures"
},
"dependencies": {
"@bedrockio/logger": "^1.0.3",
"glob": "^11.0.1",
"jszip": "^3.10.1",
"lodash-es": "^4.17.21"
},
"peerDependencies": {
"@bedrockio/model": "0.x",
"mongoose": "8.x"
},
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@babel/types": "^7.29.0",
"@bedrockio/eslint-plugin": "^1.4.6",
"@bedrockio/model": "^0.23.0",
"@bedrockio/prettier-config": "^1.1.1",
"@bedrockio/yada": "^1.11.2",
"@shelf/jest-mongodb": "^6.0.2",
"@swc/core": "^1.15.13",
"babel-plugin-module-resolver": "^5.0.2",
"eslint": "^9.39.3",
"jest": "^30.2.0",
"jest-environment-node": "^30.2.0",
"mongodb": "^7.1.0",
"mongoose": "^9.2.2"
},
"volta": {
"node": "24.14.0",
"yarn": "1.22.22"
}
}