-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
50 lines (50 loc) · 1.04 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
{
"name": "mockingoose",
"version": "2.16.2",
"description": "A Jest package for mocking mongoose models",
"main": "./lib",
"types": "./types.d.ts",
"scripts": {
"test": "jest",
"dev": "yarn build -w",
"build": "babel src -d lib -s",
"lint": "prettier -c src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alonronin/mockingoose.git"
},
"keywords": [
"jest",
"mock",
"mongoose"
],
"author": "Alon Valadji",
"license": "The Unlicense",
"bugs": {
"url": "https://github.com/alonronin/mockingoose/issues"
},
"homepage": "https://github.com/alonronin/mockingoose#readme",
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/preset-env": "^7.20.2",
"jest": "^29.3.1",
"prettier": "^2.8.0"
},
"peerDependencies": {
"mongoose": ">=4.9.10"
},
"jest": {
"testEnvironment": "node",
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"testRegex": ".test.js$",
"transform": {}
},
"engines": {
"node": ">=6.4.0"
}
}