forked from alonronin/mockingoose
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 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
{
"name": "@jazim/mock-mongoose",
"version": "1.0.1",
"description": "Package for mocking Mongoose models that can be utilized with any node.js testing library such as Jest, Mocha, and Vitest etc..",
"main": "./lib",
"types": "./types.d.ts",
"files": [
"lib/*",
"README.md",
"LICENSE",
"types.d.ts"
],
"scripts": {
"test": "jest",
"dev": "npm run build -w",
"build": "babel src -d lib -s",
"lint": "prettier -c src",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jazimabbas/mock-mongoose.git"
},
"keywords": [
"testing",
"mock",
"mongoose"
],
"author": "Jazim Abbas",
"license": "The Unlicense",
"bugs": {
"url": "https://github.com/jazimabbas/mock-mongoose/issues"
},
"homepage": "https://github.com/jazimabbas/mock-mongoose#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"
},
"dependencies": {
"sinon": "^15.0.4"
},
"jest": {
"testEnvironment": "node",
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"testRegex": ".test.js$",
"transform": {}
},
"engines": {
"node": ">=6.4.0"
}
}