-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 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
{
"name": "@thomazmz/mongo-repository",
"license": "ISC",
"version": "0.6.3",
"author": "Thomaz Zandonotto <thomaz.zandonotto@gmail.com>",
"description": "Repository implementation for MongoDB",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"./lib"
],
"keywords": [
"typescript",
"javascript",
"mongodb"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "rimraf ./lib/* && tsc",
"test": "jest --config ./jest.json --passWithNoTests",
"test:unit": "jest --config ./jest.json --passWithNoTests --testPathPattern=src",
"test:integration": "jest --config ./jest.json --passWithNoTests --run-in-band --testPathPattern=tests"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^18.14.0",
"jest": "^29.4.3",
"rimraf": "^4.1.2",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"peerDependencies": {
"mongodb": "^5.2.0"
},
"dependencies": {
"@thomazmz/core-context": "^0.2.27",
"@thomazmz/core-utils": "^0.2.24"
}
}