{
  "name": "dynamometer",
  "version": "1.2.1",
  "description": "A library to easily work with DynamoDB with a single table design approach.",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "main": "./dist/index.js",
  "files": [
    "/dist"
  ],
  "scripts": {
    "build": "tsup",
    "clean": "rm -rf ./dist/",
    "cm": "cz",
    "coverage": "codecov",
    "lint": "eslint ./src/ --fix",
    "prepare": "husky install",
    "semantic-release": "semantic-release",
    "test:watch": "jest --watch",
    "test": "jest --coverage",
    "typecheck": "tsc --noEmit"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/AndreasCaldewei/dynamometer"
  },
  "license": "MIT",
  "author": {
    "name": "AndreasCaldewei",
    "url": "https://github.com/AndreasCaldewei"
  },
  "engines": {
    "node": ">=12.0"
  },
  "keywords": [
    "dynamodb"
  ],
  "bugs": {
    "url": "https://github.com/AndreasCaldewei/dynamometer/issues"
  },
  "homepage": "https://github.com/AndreasCaldewei/dynamometer#readme",
  "peerDependencies": {
    "@aws-sdk/client-dynamodb": "^3.0.0",
    "@aws-sdk/lib-dynamodb": "^3.0.0"
  },
  "devDependencies": {
    "@types/jest": "^27.5.1",
    "@types/lodash": "^4.14.182",
    "@types/node": "^12.20.11",
    "@types/uuid": "^8.3.4",
    "@typescript-eslint/eslint-plugin": "^4.22.0",
    "@typescript-eslint/parser": "^4.22.0",
    "codecov": "^3.8.1",
    "commitizen": "^4.2.4",
    "cz-conventional-changelog": "^3.3.0",
    "eslint": "^7.25.0",
    "eslint-config-prettier": "^8.3.0",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-prettier": "^3.4.0",
    "husky": "^6.0.0",
    "jest": "^28.1.0",
    "lint-staged": "^10.5.4",
    "prettier": "2.6.2",
    "semantic-release": "^19.0.2",
    "ts-jest": "^28.0.2",
    "ts-node": "^10.7.0",
    "tsup": "^7.2.0",
    "typescript": "^4.6.4"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "lint-staged": {
    "*.ts": "eslint --cache --cache-location .eslintcache --fix"
  },
  "release": {
    "branches": [
      "main"
    ]
  },
  "publishConfig": {
    "access": "public"
  },
  "exports": {
    ".": "./dist"
  }
}
