-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.23 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
79
80
81
82
{
"name": "mocha-slonik",
"version": "9.0.3",
"description": "Slonik transaction support for Mocha test framework",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./register": "./dist/register.js"
},
"scripts": {
"clean": "rm -rf dist/",
"build": "tsc -b src/",
"prepack": "npm run build",
"prepare": "ts-patch install -s",
"pretest": "npm run build",
"test": "mocha tests/**/*.spec.ts",
"pretest:factories": "npm run build",
"test:factories": "mocha tests/factories/**/*.spec.ts",
"pretest:rootHookPlugin": "npm run build",
"test:rootHookPlugin": "mocha tests/rootHookPlugin/**/*.spec.ts",
"test:coverage": "nyc npm test",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/AndrewJo/mocha-slonik.git"
},
"keywords": [
"nodejs",
"javascript",
"typescript",
"postgresql",
"postgres",
"testing",
"test",
"mocha",
"slonik"
],
"author": "Andrew Jo <[email protected]>",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/AndrewJo/mocha-slonik/issues"
},
"homepage": "https://github.com/AndrewJo/mocha-slonik#readme",
"peerDependencies": {
"mocha": "^10.2.0",
"slonik": ">=35.0.0 <38.0.0"
},
"dependencies": {
"sinon": "^15.1.0",
"ts-mock-imports": "^1.3.16"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/chai": "^4.2.22",
"@types/chai-as-promised": "^7.1.4",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.0",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"dotenv": "^16.0.3",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.3.0",
"mocha": "^11.0.1",
"nyc": "^15.1.0",
"pg": "^8.11.3",
"prettier": "^2.4.1",
"semantic-release": "^21.0.1",
"slonik": ">=35.0.0 <38.0.0",
"ts-node": "^10.9.1",
"ts-patch": "^1.4.5",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.8.4",
"typescript-transform-paths": "^3.3.1",
"zod": "^3.21.4"
}
}