{
  "name": "anthro-js",
  "version": "0.0.7",
  "description": "A javascript adaptation of the anthro R package. https://github.com/dirkschumacher/anthro",
  "main": "lib",
  "scripts": {
    "lint": "eslint src",
    "type-check": "tsc --noEmit",
    "type-check:watch": "npm run type-check -- --watch",
    "build": "rm -rf ./lib && npm run build:types && npm run build:js && npm run build:conf",
    "build:types": "tsc --emitDeclarationOnly --outFile lib/types.d.ts",
    "build:js": "babel src --out-dir lib --ignore 'src/*.test.ts' --extensions '.ts,.tsx' --source-maps inline",
    "build:conf": "babel src/growthstandards --out-dir lib/growthstandards --copy-files",
    "test": "jest",
    "prepare": "npm run build"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/andersonad/anthro-js.git"
  },
  "keywords": [
    "anthropometry",
    "survey",
    "z-score"
  ],
  "author": "Austin Anderson",
  "license": "ISC",
  "devDependencies": {
    "@babel/cli": "^7.13.16",
    "@babel/core": "^7.14.0",
    "@babel/eslint-parser": "^7.13.14",
    "@babel/preset-env": "^7.14.1",
    "@babel/preset-typescript": "^7.13.0",
    "@types/jest": "^26.0.23",
    "@types/lodash": "^4.14.170",
    "@typescript-eslint/parser": "^4.24.0",
    "babel-jest": "^26.6.3",
    "eslint": "^7.26.0",
    "eslint-config-airbnb-base": "^14.2.1",
    "eslint-plugin-import": "^2.22.1",
    "eslint-plugin-jest": "^24.3.6",
    "jest": "^26.6.3",
    "ts-jest": "^26.5.6"
  },
  "dependencies": {
    "csv-parse": "^4.15.4",
    "lodash": "^4.17.21",
    "typescript": "^4.2.4"
  }
}
