{
  "name": "promise-assist",
  "description": "Several helper functions when working with native promises",
  "version": "2.0.1",
  "main": "./cjs/index.js",
  "module": "./esm/index.js",
  "types": "./esm/index.d.ts",
  "scripts": {
    "clean": "rimraf ./cjs ./esm",
    "prebuild": "npm run clean",
    "build": "npm run build:cjs && npm run build:esm",
    "build:cjs": "tsc -p tsconfig.build.json --outDir cjs --module commonjs",
    "build:esm": "tsc -p tsconfig.build.json --outDir esm --module esnext",
    "typecheck": "tsc --noEmit",
    "pretest": "npm run typecheck",
    "test": "mocha",
    "prepack": "npm run build"
  },
  "devDependencies": {
    "@ts-tools/node": "^4.0.0",
    "@types/chai": "^4.3.4",
    "@types/chai-as-promised": "^7.1.5",
    "@types/mocha": "^10.0.1",
    "@types/node": "14",
    "chai": "^4.3.7",
    "chai-as-promised": "^7.1.1",
    "mocha": "^10.2.0",
    "rimraf": "^4.1.0",
    "typescript": "~4.9.4"
  },
  "files": [
    "cjs",
    "esm",
    "src"
  ],
  "engines": {
    "node": ">=14"
  },
  "sideEffects": false,
  "author": "Avi Vahl <avi.vahl@wix.com>",
  "license": "MIT",
  "mocha": {
    "require": [
      "@ts-tools/node/r"
    ],
    "extension": [
      "js",
      "json",
      "ts",
      "tsx"
    ]
  },
  "repository": "https://github.com/AviVahl/promise-assist",
  "homepage": "https://github.com/AviVahl/promise-assist"
}
