@thisisagile/easy-mongo
Version:
Add support for MongoDB
44 lines (43 loc) • 1.06 kB
JSON
{
"name": "@thisisagile/easy-mongo",
"version": "17.12.2",
"description": "Add support for MongoDB",
"author": "Sander Hoogendoorn",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index",
"repository": {
"type": "git",
"url": "git@github.com:thisisagile/easy.git"
},
"keywords": [
"typescript",
"microservices",
"domain-driven-design",
"evolutionary-architecture"
],
"scripts": {
"lint": "yarn g:eslint . --ext .js,.jsx,.ts,.tsx --fix",
"format": "yarn g:prettier --check --write src test *.json",
"build": "yarn g:tsc",
"build:tsup": "yarn g:tsup --onSuccess \"yarn g:tsc --emitDeclarationOnly --declaration\"",
"test": "yarn g:jest --coverage",
"prepack": "yarn g:copy-readme"
},
"sideEffects": false,
"files": [
"dist",
"src"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@thisisagile/easy-test": "*"
},
"dependencies": {
"@thisisagile/easy": "^17.12.2",
"mongodb": "^6.12.0"
}
}