{
  "name": "uno-js",
  "version": "3.127.8",
  "description": "JS/TS common used functions, zero dependencies",
  "main": "dist/index.js",
  "jest": {
    "coverageReporters": [
      "lcov",
      "text"
    ],
    "moduleFileExtensions": [
      "ts",
      "js"
    ],
    "transform": {
      "^.+\\.(ts|tsx)$": [
        "ts-jest",
        {
          "diagnostics": false,
          "tsconfig": "tsconfig.json"
        }
      ]
    },
    "testMatch": [
      "<rootDir>/test/**/*.spec.ts"
    ],
    "coverageThreshold": {
      "global": {
        "branches": 74,
        "functions": 85,
        "lines": 90,
        "statements": -80
      }
    }
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/unosquare/uno-js.git"
  },
  "keywords": [
    "Javascript",
    "functions",
    "JS",
    "csv",
    "typescript"
  ],
  "author": "Unosquare",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/unosquare/uno-js/issues"
  },
  "homepage": "https://github.com/unosquare/uno-js#readme",
  "devDependencies": {
    "@biomejs/biome": "1.9.4",
    "@types/jest": "^29.5.14",
    "jest": "^29.7.0",
    "jest-environment-jsdom": "^29.7.0",
    "ts-jest": "^29.2.5",
    "typescript": "^5.7.3"
  },
  "scripts": {
    "test": "jest --runInBand",
    "cest": "jest --collectCoverage --runInBand",
    "lint": "pnpm biome check ./src",
    "lint:fix": "pnpm biome check --write ./src",
    "lint:test": "pnpm biome check --write ./test",
    "build": "tsc",
    "watch": "tsc -w",
    "preparepackage": "npm run build && npm run copypackage",
    "copypackage": "npx shx cp package.json dist"
  }
}