{
  "name": "to-time",
  "version": "3.0.2",
  "description": "Utility for converting textual time periods to time units",
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./types/index.d.ts",
  "exports": {
    ".": {
      "types": "./types/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs",
      "default": "./dist/index.mjs"
    },
    "./package.json": "./package.json"
  },
  "sideEffects": false,
  "files": [
    "dist",
    "lib",
    "types"
  ],
  "directories": {
    "test": "test"
  },
  "scripts": {
    "pretest": "npm run build",
    "prepublishOnly": "npm run build",
    "test-source": "mocha ./test/spec",
    "test-build": "mocha ./test/specBuild.js ./test/specBuildEsm.mjs ./test/specUmd.js",
    "test": "npm run test-source && npm run test-build",
    "coverage": "nyc npm run test-source",
    "lint": "eslint .",
    "build": "rollup -c rollup.config.mjs",
    "build-min": "npm run build"
  },
  "author": "Matan Hafuta",
  "license": "MIT",
  "devDependencies": {
    "@eslint/js": "^9.39.4",
    "@rollup/plugin-commonjs": "^28.0.2",
    "@rollup/plugin-node-resolve": "^16.0.0",
    "@rollup/plugin-terser": "^0.4.4",
    "@stylistic/eslint-plugin": "^4.4.1",
    "chai": "^4.5.0",
    "eslint": "^9.39.4",
    "globals": "^16.5.0",
    "mocha": "^11.7.5",
    "nyc": "^17.1.0",
    "rollup": "^4.34.9"
  },
  "overrides": {
    "serialize-javascript": "^7.0.5",
    "diff": "^8.0.4"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/hafuta/to-time.git"
  },
  "dependencies": {
    "bignumber.js": "^9.1.2"
  },
  "engines": {
    "node": ">=20.19.0"
  },
  "nyc": {
    "include": [
      "src/**/*.js"
    ],
    "reporter": [
      "text",
      "html"
    ],
    "exclude": [
      "test/**"
    ]
  }
}
