{
  "name": "@twipped/utils",
  "version": "7.1.0",
  "description": "A collection of commonly used utility functions",
  "type": "module",
  "main": "./index.js",
  "exports": {
    ".": {
      "webpack": "./src/index.js",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs",
      "types": "./dist/index.d.ts"
    },
    "./*": {
      "webpack": "./src/*.js",
      "import": "./dist/*.mjs",
      "require": "./dist/*.cjs",
      "types": "./dist/*.d.ts"
    }
  },
  "scripts": {
    "test": "tap -R base --no-coverage tests",
    "cover": "tap -R terse --coverage tests",
    "lint": "eslint .",
    "lint-fix": "eslint . --fix",
    "docs": "rimraf docs && typedoc src/*.js --out docs --readme none --hideBreadcrumbs",
    "build": "rimraf dist && npm run build:cjs && npm run build:mjs && npm run build:types",
    "build:cjs": "babel src --out-dir dist --out-file-extension .cjs --ignore '**/__test__/*'",
    "build:mjs": "ESM=1 babel src --out-dir dist --out-file-extension .mjs --ignore '**/__test__/*'",
    "build:types": "tsc"
  },
  "engines": {
    "node": ">=14.10.0"
  },
  "author": "Jocelyn Badgley <joc@twipped.com> (http://twipped.com)",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git://github.com/Twipped/js-utils"
  },
  "devDependencies": {
    "@babel/cli": "^7.21.0",
    "@babel/core": "^7.21.0",
    "@twipped/eslint-config": "^7.5.2",
    "babel-plugin-add-import-extension": "^1.6.0",
    "eslint": "^8.36.0",
    "pretty-format": "^29.5.0",
    "tap": "^16.3.4",
    "typedoc": "^0.23.26",
    "typedoc-plugin-markdown": "^3.14.0",
    "typescript": "^4.9.5"
  },
  "files": [
    "src",
    "dist",
    "docs",
    "CHANGELOG.md",
    "LICENSE.txt",
    "README.md"
  ],
  "publishConfig": {
    "access": "public"
  }
}
