-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.2 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
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "mongoose-cross-db-transaction",
"version": "1.0.5",
"description": "cross db transaction to multiple level use case",
"main": "index.js",
"scripts": {
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"build": "rimraf dist && tsc && cp package.json .nvmrc README.md dist",
"start:publish": "npm run test && npm run build && cd dist && npm publish && cd ../",
"test": "Test=true jest --runInBand --force-exit",
"test:watch": "Test=true jest --watch --runInBand --force-exit",
"test:cov": "Test=true jest --coverage --runInBand --force-exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Procaseycash/mongoose-cross-db-transaction.git"
},
"keywords": [
"cross",
"db",
"transaction",
"session",
"transaction",
"transaction",
"multiple",
"level"
],
"author": "Kazeem Olanipekun <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/Procaseycash/mongoose-cross-db-transaction/issues"
},
"homepage": "https://github.com/Procaseycash/mongoose-cross-db-transaction#readme",
"dependencies": {
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"mongoose": "^6.10.2",
"prettier": "^2.3.2",
"rimraf": "^4.4.0",
"typescript": "^4.9.5"
},
"devDependencies": {
"@types/jest": "29.2.4",
"@types/node": "18.11.18",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "29.3.1",
"prettier": "^2.3.2",
"source-map-support": "^0.5.20",
"ts-jest": "29.0.3",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"tsconfig-paths": "4.1.1",
"typescript": "^4.7.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}