{
  "name": "@schamane/serial-exec",
  "version": "2.0.2",
  "description": "Serial execution of asynchronouse functions for javascript",
  "type": "module",
  "keywords": [
    "functions",
    "async",
    "serial"
  ],
  "author": "Nazar Kulyk <nazar.kulyk@ibsolution.de>",
  "homepage": "https://github.com/schamane/serialExec",
  "license": "MIT",
  "main": "./lib/index.cjs",
  "types": "./lib/index.d.ts",
  "source": "src/index.ts",
  "module": "./lib/index.mjs",
  "directories": {
    "src": "src",
    "test": "__tests__"
  },
  "files": [
    "lib"
  ],
  "publishConfig": {
    "access": "public",
    "source": "src/index.ts",
    "main": "lib/index.cjs"
  },
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com:schamane/serialExec.git"
  },
  "bugs": {
    "url": "https://github.com/schamane/serialExec/issues"
  },
  "scripts": {
    "clean": "rimraf lib",
    "build-ts": "npm run clean && tsc",
    "deps:check": "npx deepcheck",
    "build": "npm run clean && npm run build:index",
    "build:index": "microbundle build --raw --compress --no-sourcemap --target node --format esm,cjs",
    "build:check": "npm run clean && tsc --noemit",
    "watch": "npm run clean && tsc -w",
    "lint": "eslint --ext .ts ./src",
    "lint:fix": "eslint --fix --ext .ts ./src",
    "prepublishOnly": "npm run build",
    "test": "NODE_OPTIONS=--experimental-vm-modules npx jest"
  },
  "devDependencies": {
    "@babel/preset-typescript": "^7.16.7",
    "@tsconfig/node16": "^1.0.2",
    "@types/jest": "^27.5.1",
    "@typescript-eslint/eslint-plugin": "^5.23.0",
    "@typescript-eslint/parser": "^5.23.0",
    "eslint": "8.15.0",
    "eslint-config-esnext": "^4.1.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-import-resolver-typescript": "^2.7.1",
    "eslint-plugin-import": "^2.26.0",
    "eslint-plugin-prettier": "^4.0.0",
    "eslint-plugin-unicorn": "^42.0.0",
    "jest": "^28.1.0",
    "microbundle": "^0.15.0",
    "prettier-eslint": "^14.0.3",
    "rimraf": "^3.0.2",
    "source-map-support": "^0.5.21",
    "typescript": "^4.6.4"
  },
  "jest": {
    "moduleDirectories": [
      "node_modules",
      "src"
    ],
    "testRegex": ".spec.ts$",
    "moduleNameMapper": {
      "src/(.*)": "<rootDir>/src/$1",
      "tests/(.*)": "<rootDir>/__tests__/$1"
    }
  },
  "engines": {
    "node": "^14.3 || >=16.0.0"
  }
}
