-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.53 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
{
"name": "ava-postgres",
"keywords": [
"🐘",
"postgres",
"ava",
"test",
"testing",
"database",
"db",
"sql",
"testcontainers",
"container",
"template"
],
"files": [
"dist"
],
"version": "7.3.1",
"main": "dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"repository": "[email protected]:seamapi/ava-postgres.git",
"author": "Max Isom <[email protected]>",
"license": "MIT",
"devDependencies": {
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "9.0.1",
"@semantic-release/release-notes-generator": "10.0.3",
"@types/lodash": "4.17.0",
"@types/node": "18.7.14",
"@types/object-hash": "2.2.1",
"@types/pg": "8.6.5",
"ava": "5.1.0",
"ava-typescript-worker": "1.1.0",
"esbuild": "0.15.6",
"esbuild-register": "3.3.3",
"execa": "6.1.0",
"prettier": "2.7.1",
"semantic-release": "19.0.5",
"testcontainers": "^10.4.0",
"tsup": "6.2.3",
"type-fest": "3.6.1",
"typescript": "4.8.2"
},
"dependencies": {
"async-mutex": "0.4.0",
"birpc": "0.2.17",
"lodash": "4.17.21",
"nanoid": "4.0.0",
"object-hash": "3.0.0",
"pg": "8.8.0"
},
"peerDependencies": {
"ava": ">=4.3.3",
"testcontainers": ">=10.0.0"
},
"scripts": {
"test": "ava",
"test:types": "tsc --noEmit",
"build": "tsup",
"format": "prettier -w .",
"format:check": "prettier --check ."
},
"engines": {
"node": ">=18"
}
}