-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.04 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.04 KB
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
{
"name": "postgres-node-container",
"version": "1.0.2",
"description": "Easily start a postgres docker container from your integration tests with Node",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --project tsconfig.json",
"start": "tsc --project tsconfig.json && node dist/index.js",
"test": "jest --config ./test/jest-e2e.json --runInBand --verbose"
},
"author": "lukasberk",
"license": "ISC",
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/jest": "^29.0.3",
"@types/pg": "^8.6.5",
"jest": "^29.0.3",
"pg": "^8.8.0",
"ts-jest": "^29.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/lukasvdberk/postgres-node-container.git"
},
"keywords": [
"postgres",
"docker",
"container",
"node",
"integration",
"test"
],
"dependencies": {
"get-port": "^6.1.2",
"get-port-please": "^2.6.1",
"ts-node": "^10.9.1",
"tsc": "^2.0.4",
"typescript": "^4.8.3",
"testcontainers": "^8.14.0"
}
}