{
  "name": "@dr.pogodin/js-utils",
  "version": "0.2.0",
  "description": "Collection of JavaScript (TypeScript) utilities.",
  "main": "./build/logic/index.js",
  "types": "./build/types/index.d.ts",
  "exports": {
    "types": "./build/types/index.d.ts",
    "default": "./build/logic/index.js"
  },
  "scripts": {
    "build": "rimraf build && npm run build:logic && npm run build:types",
    "build:logic": "rimraf build/logic && babel src -x .ts --out-dir build/logic --source-maps",
    "build:types": "rimraf build/types && tsc --project tsconfig.types.json",
    "jest": "npm run jest:types && npm run jest:logic",
    "jest:logic": "jest --config jest.config.js --no-cache",
    "jest:types": "tstyche",
    "lint": "eslint --cache",
    "test": "npm run lint && npm run typecheck && npm run jest",
    "typecheck": "tsc"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/birdofpreyru/js-utils.git"
  },
  "keywords": [
    "javascript",
    "util",
    "utility"
  ],
  "author": "Dr. Sergey Pogodin <doc@pogodin.studio> (https://dr.pogodin.studio)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/birdofpreyru/js-utils/issues"
  },
  "homepage": "https://github.com/birdofpreyru/js-utils#readme",
  "devDependencies": {
    "@babel/cli": "^8.0.1",
    "@babel/core": "^8.0.1",
    "@babel/plugin-transform-runtime": "^8.0.1",
    "@babel/preset-env": "^8.0.2",
    "@babel/preset-typescript": "^8.0.1",
    "@dr.pogodin/babel-plugin-add-import-extension": "^2.1.0",
    "@dr.pogodin/eslint-configs": "^0.3.0",
    "@jest/globals": "^30.4.1",
    "@tsconfig/recommended": "^1.0.13",
    "@types/jest": "^30.0.0",
    "babel-jest": "^30.4.1",
    "jest": "^30.4.2",
    "mockdate": "^3.0.5",
    "rimraf": "^6.1.3",
    "ts-jest-resolver": "^2.0.1",
    "tstyche": "^7.2.1",
    "typescript": "^6.0.3"
  },
  "dependencies": {
    "@babel/runtime": "^8.0.0"
  },
  "type": "module"
}
