{
  "_args": [
    [
      "listr2@3.10.0",
      "/var/www/html/dev_photogram/photogram-web"
    ]
  ],
  "_development": true,
  "_from": "listr2@3.10.0",
  "_id": "listr2@3.10.0",
  "_inBundle": false,
  "_integrity": "sha512-eP40ZHihu70sSmqFNbNy2NL1YwImmlMmPh9WO5sLmPDleurMHt3n+SwEWNu2kzKScexZnkyFtc1VI0z/TGlmpw==",
  "_location": "/listr2",
  "_phantomChildren": {
    "aggregate-error": "3.1.0"
  },
  "_requested": {
    "type": "version",
    "registry": true,
    "raw": "listr2@3.10.0",
    "name": "listr2",
    "escapedName": "listr2",
    "rawSpec": "3.10.0",
    "saveSpec": null,
    "fetchSpec": "3.10.0"
  },
  "_requiredBy": [
    "/lint-staged"
  ],
  "_resolved": "https://registry.npmjs.org/listr2/-/listr2-3.10.0.tgz",
  "_spec": "3.10.0",
  "_where": "/var/www/html/dev_photogram/photogram-web",
  "author": {
    "name": "Cenk Kilic",
    "email": "cenk@kilic.dev",
    "url": "https://srcs.kilic.dev"
  },
  "bugs": {
    "url": "https://github.com/cenk1cenk2/listr2/issues"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/@cenk1cenk2/cz-cc"
    }
  },
  "dependencies": {
    "cli-truncate": "^2.1.0",
    "colorette": "^1.2.2",
    "log-update": "^4.0.0",
    "p-map": "^4.0.0",
    "rxjs": "^6.6.7",
    "through": "^2.3.8",
    "wrap-ansi": "^7.0.0"
  },
  "description": "Terminal task list reborn! Create beautiful CLI interfaces via easy and logical to implement task lists that feel alive and interactive.",
  "devDependencies": {
    "@cenk1cenk2/cz-cc": "^1.3.25",
    "@cenk1cenk2/eslint-config": "^0.4.38",
    "@microsoft/api-extractor": "^7.15.2",
    "@types/jest": "^26.0.23",
    "@types/node": "^15.6.0",
    "@types/rewire": "^2.5.28",
    "@types/through": "^0.0.30",
    "@types/wrap-ansi": "^3.0.0",
    "delay": "^5.0.0",
    "enquirer": "^2.3.6",
    "eslint": "^7.27.0",
    "husky": "4",
    "jest": "^27.0.1",
    "jest-mock-process": "^1.4.0",
    "lint-staged": "^11.0.0",
    "prettier": "^2.3.0",
    "rewire": "^5.0.0",
    "rimraf": "^3.0.2",
    "ts-jest": "^27.0.1",
    "ts-node": "^10.0.0",
    "tsc-watch": "^4.4.0",
    "tsconfig-paths": "^3.9.0",
    "tscpaths": "^0.0.9",
    "typedoc": "^0.20.36",
    "typedoc-plugin-markdown": "^3.8.2",
    "typescript": "^4.3.2"
  },
  "engines": {
    "node": ">=10.0.0"
  },
  "homepage": "https://github.com/cenk1cenk2/listr2#readme",
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged",
      "prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
      "pre-push": "yarn test && yarn api-extractor"
    }
  },
  "keywords": [
    "listr",
    "cli",
    "task",
    "list",
    "tasklist",
    "terminal",
    "term",
    "console",
    "ascii",
    "unicode",
    "loading",
    "indicator",
    "progress",
    "busy",
    "wait",
    "idle"
  ],
  "license": "MIT",
  "lint-staged": {
    "./*.{ts,js,tsx,jsx}": [
      "prettier --loglevel warn --write",
      "eslint --fix"
    ],
    "./*.{json,md}": [
      "prettier --loglevel warn --write"
    ]
  },
  "main": "./dist/index.js",
  "name": "listr2",
  "peerDependencies": {
    "enquirer": ">= 2.3.0 < 3"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/cenk1cenk2/listr2.git"
  },
  "scripts": {
    "build": "tsc -P tsconfig.build.json",
    "clean": "rimraf node_modules yarn.lock",
    "dev:build": "yarn prebuild && tsc -p tsconfig.json && yarn postbuild",
    "dev:start": "yarn dev:build && TS_NODE_PROJECT='tsconfig.paths.json' tsc-watch --noClear --onSuccess \"yarn postbuild\"",
    "dev:test": "LISTR_DISABLE_COLOR=1 TS_NODE_PROJECT=tests/tsconfig.json node --inspect=0.0.0.0:${DEBUG_PORT:-9229} -r tsconfig-paths/register -r ts-node/register node_modules/jest/bin/jest.js --verbose --watchAll --config ./tests/jest.config.js",
    "docs": "typedoc --entryPoints src/index.ts --entryPoints src/renderer/default.renderer.ts --entryPoints src/renderer/verbose.renderer.ts --entryPoints src/renderer/silent.renderer.ts --readme none --allReflectionsHaveOwnDocument --hideInPageTOC",
    "example": "ts-node -r tsconfig-paths/register",
    "lint": "prettier --loglevel warn --write src/ tests/ examples/ && eslint --ext .ts,.js,.tsx,.jsx --fix src/ tests/ examples/",
    "lint:check": "eslint --ext .ts,.js,.tsx,.jsx src/",
    "postbuild": "tscpaths -p tsconfig.paths.json -s ./dist -o ./dist",
    "prebuild": "rimraf tsconfig*.tsbuildinfo && rimraf dist/",
    "read-snapshot": "./tests/read-terminal-snapshots.sh",
    "test": "LISTR_DISABLE_COLOR=1 ts-node -P tests/tsconfig.json -r tsconfig-paths/register node_modules/jest/bin/jest.js --config ./tests/jest.config.js",
    "test:cov": "LISTR_DISABLE_COLOR=1 ts-node -P tests/tsconfig.json -r tsconfig-paths/register node_modules/jest/bin/jest.js --coverage --config ./tests/jest.config.js"
  },
  "types": "./dist/index.d.ts",
  "version": "3.10.0"
}
