-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
43 lines (43 loc) · 1.01 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
{
"name": "pgmock",
"version": "1.0.3",
"description": "In-memory Postgres for unit/E2E tests",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"require": "./dist/main.cjs",
"import": "./dist/main.js"
}
},
"homepage": "https://stackframe-projects.github.io/pgmock",
"scripts": {
"build": "rimraf dist/ && tsup src/main.ts --dts --splitting --format esm,cjs",
"build-dev": "npm run build -- --sourcemap",
"build-dev:watch": "npm run build-dev -- --watch",
"test": "jest --detectOpenHandles --forceExit"
},
"author": "Stan Wohlwend <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.12.2",
"rimraf": "^5.0.5",
"tsup": "^8.0.2",
"typescript": "^5.4.3",
"jest": "*",
"@swc/core": "*",
"@swc/jest": "*",
"@types/jest": "*",
"@types/pg": "*",
"pg": "*"
},
"jest": {
"transform": {
"^.+\\.(t|j)sx?$": "@swc/jest"
}
}
}