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
70
71
72
73
74
75
76
77
78{
"name": "@nestjs/azure-database",
"version": "4.0.0",
"description": "The Azure Table Storage module for Nest framework (node.js)",
"main": "dist/index.js",
"author": {
"name": "Wassim Chegham",
"email": "github@wassim.dev",
"url": "https://twitter.com/manekinekko"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nestjs/azure-database.git"
},
"scripts": {
"test": "jest --passWithNoTests --runInBand",
"precommit": "lint-staged",
"prettier": "prettier \"{lib,tests}/**/*.ts\" --write && git status",
"build": "rimraf dist && npm run build:lib && npm test",
"format": "prettier --write \"{lib,tests}/**/*.ts\"",
"lint": "eslint \"{lib,tests}/**/*.ts\" --fix",
"build:lib": "tsc -p tsconfig.json",
"prepare": "npm run build",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next"
},
"peerDependencies": {
"@nestjs/common": "^10.0.0 || ^11.0.0",
"@nestjs/core": "^10.0.0 || ^11.0.0"
},
"dependencies": {
"@azure/cosmos": "^4.0.0",
"@azure/data-tables": "^13.2.2",
"@nestjs/common": "^11.0.0",
"@nestjs/core": "^11.0.0"
},
"devDependencies": {
"@commitlint/cli": "20.3.1",
"@commitlint/config-angular": "20.3.1",
"@eslint/eslintrc": "3.3.3",
"@eslint/js": "9.39.2",
"@nestjs/testing": "11.1.12",
"@types/jest": "29.5.14",
"@types/node": "24.9.1",
"azurite": "3.35.0",
"dotenv": "16.6.1",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.5",
"globals": "17.0.0",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "16.2.7",
"prettier": "3.8.0",
"reflect-metadata": "0.1.14",
"rimraf": "6.1.2",
"rxjs": "7.8.2",
"supertest": "7.2.2",
"ts-jest": "29.4.6",
"typescript": "5.9.3",
"typescript-eslint": "8.53.1"
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS"
}
}
}