-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.6 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
{
"name": "@microcks/microcks-testcontainers",
"version": "0.3.1-SNAPSHOT",
"author": "Laurent Broudoux <[email protected]>",
"description": "Node/TypeScript library for Testcontainers that enables embedding Microcks into your unit tests with lightweight, throwaway instance thanks to containers",
"type": "module",
"bugs": {
"url": "https://github.com/microcks/microcks-testcontainers-node/issues"
},
"homepage": "https://github.com/microcks/microcks-testcontainers-node#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/microcks/microcks-testcontainers-node.git"
},
"license": "Apache-2.0",
"main": "build/index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"prebuild": "node -p \"'export const LIB_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts",
"build": "tsc --project tsconfig.build.json",
"test": "cross-env DEBUG=testcontainers* NODE_OPTIONS='--experimental-vm-modules' jest"
},
"dependencies": {
"testcontainers": "^10.10.4"
},
"devDependencies": {
"@aws-sdk/client-sqs": "3.398.0",
"@testcontainers/localstack": "^10.10.4",
"@testcontainers/rabbitmq": "^10.10.4",
"@types/amqplib": "^0.10.5",
"@types/jest": "^29.5.3",
"@types/ws": "^8.5.10",
"amqplib": "^0.10.4",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"keycloak-testcontainer": "^0.0.7",
"mqtt": "^5.10.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"ws": "^8.17.0"
},
"files": [
"build"
],
"engines": {
"node": ">= 16"
}
}