Skip to content

Commit 768feb7

Browse files
committed
add basic structure for cosmos db module
1 parent a00bbb6 commit 768feb7

4 files changed

Lines changed: 84 additions & 0 deletions

File tree

package-lock.json

Lines changed: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"name": "@testcontainers/azure-cosmosdb-emulator",
3+
"version": "10.20.0",
4+
"license": "MIT",
5+
"keywords": [
6+
"azure-cosmosdb",
7+
"cosmosdb",
8+
"emulator",
9+
"testing",
10+
"docker",
11+
"testcontainers"
12+
],
13+
"description": "Azure Cosmos DB Emulator module for Testcontainers",
14+
"homepage": "https://github.com/testcontainers/testcontainers-node#readme",
15+
"repository": {
16+
"type": "git",
17+
"url": "https://github.com/testcontainers/testcontainers-node"
18+
},
19+
"bugs": {
20+
"url": "https://github.com/testcontainers/testcontainers-node/issues"
21+
},
22+
"main": "build/index.js",
23+
"files": [
24+
"build"
25+
],
26+
"publishConfig": {
27+
"access": "public"
28+
},
29+
"scripts": {
30+
"prepack": "shx cp ../../../README.md . && shx cp ../../../LICENSE .",
31+
"build": "tsc --project tsconfig.build.json"
32+
},
33+
"devDependencies": {},
34+
"dependencies": {
35+
"testcontainers": "^10.20.0"
36+
}
37+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"extends": "./tsconfig.json",
3+
"exclude": [
4+
"build",
5+
"jest.config.ts",
6+
"src/**/*.test.ts"
7+
],
8+
"references": [
9+
{
10+
"path": "../../testcontainers"
11+
}
12+
]
13+
}
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"extends": "../../../tsconfig.base.json",
3+
"compilerOptions": {
4+
"rootDir": "src",
5+
"outDir": "build",
6+
"paths": {
7+
"testcontainers": [
8+
"../../testcontainers/src"
9+
]
10+
}
11+
},
12+
"exclude": [
13+
"build",
14+
"jest.config.ts"
15+
],
16+
"references": [
17+
{
18+
"path": "../../testcontainers"
19+
}
20+
]
21+
}

0 commit comments

Comments
 (0)