{
  "name": "measure-convert",
  "version": "1.0.8",
  "description": "JS/TS package for managing units of measurement. Convert, add, subtract, multiply, divide, and compare units of measurement.",
  "main": "build/index.js",
  "types": "build/index.d.ts",
  "scripts": {
    "clean": "rimraf build",
    "build": "npm run clean && tsc",
    "start": "node build/index.js",
    "test": "jest",
    "lint": "eslint . --ext .js,.ts",
    "lint:fix": "eslint . --ext .js,.ts --fix",
    "prepare": "npm run build",
    "prepublishOnly": "npm run build && npm run test"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/magnacartatron/measurement.git"
  },
  "author": "Alex B",
  "license": "Apache-2.0",
  "files": [
    "build/**/*"
  ],
  "devDependencies": {
    "@types/jest": "^29.5.14",
    "@types/node": "^22.10.5",
    "@typescript-eslint/eslint-plugin": "^8.19.1",
    "@typescript-eslint/parser": "^8.19.1",
    "eslint": "^9.17.0",
    "jest": "^29.7.0",
    "rimraf": "^6.0.1",
    "ts-jest": "^29.2.5",
    "ts-node": "^10.9.2",
    "typescript": "^5.7.2"
  },
  "jest": {
    "preset": "ts-jest",
    "testEnvironment": "node",
    "collectCoverage": true,
    "coverageDirectory": "./coverage/",
    "coverageReporters": [
      "text",
      "lcov"
    ],
    "testMatch": [
      "**/*.test.ts"
    ]
  },
  "directories": {
    "test": "tests"
  },
  "keywords": [
    "unit",
    "conversion",
    "measurement",
    "temperature",
    "angle",
    "volume",
    "speed",
    "metric",
    "imperial",
    "physics",
    "engineering",
    "tools",
    "scientific",
    "calculations",
    "acceleration",
    "area",
    "mass",
    "concentration",
    "units",
    "API",
    "unit-conversion",
    "convert-units",
    "data"
  ],
  "bugs": {
    "url": "https://github.com/magnacartatron/measurement/issues"
  },
  "homepage": "https://github.com/magnacartatron/measurement#readme"
}