{
  "name": "@ch1/browser-dna-express-tables",
  "version": "0.1.0",
  "description": "Browser DNA Express Tables is a tool for consuming DNA Express Fingerprint objects and storing them in SQL database",
  "keywords": [
    "CH1",
    "Fingerprint",
    "Server",
    "Express",
    "Database",
    "@ch1/browser-dna-express"
  ],
  "main": "dist/index.cjs.js",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "repository": "https://github.com/bennett000/ch1-browser-dna-express-tables",
  "homepage": "https://github.com/bennett000/ch1-browser-dna-express-tables",
  "bugs": "https://github.com/bennett000/ch1-browser-dna-express/issues-tables",
  "author": "dev@michaeljbennett.info",
  "contributors": [],
  "license": "LGPL-3.0",
  "private": false,
  "scripts": {
    "prebuild": "rimraf ./dist",
    "build": "tsc",
    "postbuild": "rollup --input ./dist/index.js --format cjs --file ./dist/index.cjs.js",
    "pretest": "rimraf ./dist && rimraf ./coverage",
    "test": "jest",
    "test:watch": "jest --watch",
    "typegen": "sql-tables ./src/schema.ts ./src/typegen.ts"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.{js,json,css,md}": [
      "prettier --single-quote --write src/**/*.ts",
      "git add"
    ]
  },
  "jest": {
    "collectCoverage": true,
    "collectCoverageFrom": [
      "**/*.{ts,tsx}",
      "!**/node_modules/**",
      "!**/coverage/**",
      "!**/dist/**",
      "!**/*.d.ts",
      "!**/interfaces.ts",
      "!**/index.ts"
    ],
    "coverageDirectory": "coverage/",
    "coveragePathIgnorePatterns": [
      "/node_modules/",
      "/coverage/",
      "/dist/",
      "/example/"
    ],
    "coverageReporters": [
      "json",
      "lcov",
      "text",
      "html"
    ],
    "transform": {
      "^.+\\.tsx?$": "ts-jest"
    },
    "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js",
      "jsx",
      "json",
      "node"
    ]
  },
  "devDependencies": {
    "@ch1/browser-dna": "^0.1.1",
    "@ch1/browser-dna-express": "^0.2.0",
    "@ch1/xhr": "^0.3.0",
    "@types/express": "^4.16.0",
    "@types/jest": "^23.3.1",
    "@types/node": "^10.9.4",
    "body-parser": "^1.18.3",
    "cors": "^2.8.4",
    "express": "^4.16.3",
    "express-rate-limit": "^3.2.0",
    "helmet": "^3.13.0",
    "husky": "^1.0.0-rc.13",
    "jest": "^23.5.0",
    "lint-staged": "^7.2.2",
    "prettier": "^1.14.2",
    "rimraf": "^2.6.2",
    "rollup": "^0.66.2",
    "rollup-plugin-commonjs": "^9.1.8",
    "rollup-plugin-node-resolve": "^3.4.0",
    "ts-jest": "^23.1.4",
    "typescript": "^3.0.3"
  },
  "dependencies": {
    "@ch1/sql-tables": "^1.2.10"
  }
}
