@qbcart/cosmos
Version:
Azure Cosmos DB access common across the QBCart node ecosystem.
65 lines (64 loc) • 1.52 kB
JSON
{
"name": "@qbcart/cosmos",
"version": "6.0.0",
"description": "Azure Cosmos DB access common across the QBCart node ecosystem.",
"keywords": [
"qbcart",
"eshop",
"data",
"cosmos"
],
"license": "MIT",
"author": "QbCart Inc.",
"contributors": [
"Allan Mobley",
"Michael Shea"
],
"main": "index.js",
"module": "esm/index.js",
"types": "types/index.d.ts",
"exports": {
"require": "./index.js",
"import": "./esm/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/QBCart/Cosmos.git"
},
"bugs": {
"url": "https://github.com/QBCart/Cosmos/issues"
},
"homepage": "https://github.com/QBCart/Cosmos#readme",
"scripts": {
"build": "rimraf dist && tsc && tsc -p tsconfig.esm.json",
"lint": "eslint src/**/*.ts",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"test": "echo \"Error: no test specified\" && exit 1",
"test:ci": "echo \"All Good\" && exit 0"
},
"dependencies": {
"@azure/cosmos": "^3.16.2",
"@qbcart/types": "^3.6.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.30.4",
"@typescript-eslint/parser": "^5.30.4",
"eslint": "^8.19.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"typescript": "^4.7.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"!.*": [
"prettier --write ."
]
}
}