123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- {
- "_from": "listr2@^4.0.1",
- "_id": "listr2@4.0.5",
- "_inBundle": false,
- "_integrity": "sha512-juGHV1doQdpNT3GSTs9IUN43QJb7KHdF9uqg7Vufs/tG9VTzpFphqF4pm/ICdAABGQxsyNn9CiYA3StkI6jpwA==",
- "_location": "/listr2",
- "_phantomChildren": {
- "astral-regex": "2.0.0",
- "is-fullwidth-code-point": "3.0.0",
- "string-width": "4.2.3",
- "strip-ansi": "6.0.1",
- "tslib": "2.3.1"
- },
- "_requested": {
- "type": "range",
- "registry": true,
- "raw": "listr2@^4.0.1",
- "name": "listr2",
- "escapedName": "listr2",
- "rawSpec": "^4.0.1",
- "saveSpec": null,
- "fetchSpec": "^4.0.1"
- },
- "_requiredBy": [
- "/lint-staged"
- ],
- "_resolved": "https://registry.npmjs.org/listr2/-/listr2-4.0.5.tgz",
- "_shasum": "9dcc50221583e8b4c71c43f9c7dfd0ef546b75d5",
- "_spec": "listr2@^4.0.1",
- "_where": "H:\\gs_nuxt\\node_modules\\lint-staged",
- "author": {
- "name": "Cenk Kilic",
- "email": "cenk@kilic.dev",
- "url": "https://cenk.kilic.dev"
- },
- "bugs": {
- "url": "https://github.com/cenk1cenk2/listr2/issues"
- },
- "bundleDependencies": false,
- "config": {
- "commitizen": {
- "path": "./node_modules/@cenk1cenk2/cz-cc"
- }
- },
- "dependencies": {
- "cli-truncate": "^2.1.0",
- "colorette": "^2.0.16",
- "log-update": "^4.0.0",
- "p-map": "^4.0.0",
- "rfdc": "^1.3.0",
- "rxjs": "^7.5.5",
- "through": "^2.3.8",
- "wrap-ansi": "^7.0.0"
- },
- "deprecated": false,
- "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.4.11",
- "@cenk1cenk2/eslint-config": "2.5.5",
- "@types/clone": "^2.1.1",
- "@types/jest": "^27.4.0",
- "@types/node": "^17.0.14",
- "@types/through": "^0.0.30",
- "@types/wrap-ansi": "^3.0.0",
- "delay": "^5.0.0",
- "enquirer": "^2.3.6",
- "eslint": "^8.8.0",
- "jest": "^27.4.7",
- "jest-mock-process": "^1.4.1",
- "lint-staged": "^12.3.2",
- "prettier": "^2.5.1",
- "rimraf": "^3.0.2",
- "simple-git-hooks": "^2.7.0",
- "ts-jest": "^27.1.3",
- "ts-node": "^10.4.0",
- "tsconfig-paths": "^3.12.0",
- "tsup": "5.11.13",
- "typedoc": "^0.22.11",
- "typedoc-plugin-markdown": "^3.11.12",
- "typescript": "^4.6.0-dev.20220131"
- },
- "engines": {
- "node": ">=12"
- },
- "exports": {
- ".": {
- "require": "./dist/index.cjs",
- "import": "./dist/index.js",
- "types": "./dist/index.d.ts"
- }
- },
- "homepage": "https://github.com/cenk1cenk2/listr2#readme",
- "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,spec.ts}": [
- "prettier --loglevel warn --write",
- "eslint --fix"
- ],
- "*.{json,md}": [
- "prettier --loglevel warn --write"
- ]
- },
- "main": "./dist/index.cjs",
- "module": "./dist/index.js",
- "name": "listr2",
- "peerDependencies": {
- "enquirer": ">= 2.3.0 < 3"
- },
- "peerDependenciesMeta": {
- "enquirer": {
- "optional": true
- }
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/cenk1cenk2/listr2.git"
- },
- "scripts": {
- "build": "tsup-node",
- "clean": "rimraf node_modules yarn.lock",
- "dev:start": "tsup-node --watch",
- "dev:test": "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.cjs",
- "docs": "typedoc --options .typedoc.json --hideInPageTOC --hideBreadcrumbs",
- "example": "ts-node -r tsconfig-paths/register --project examples/tsconfig.json",
- "lint": "prettier --loglevel warn --write src/ tests/ examples/ && yarn run lint:check --fix",
- "lint:check": "eslint --ext .ts,.js,.tsx,.jsx src/ tests/ examples/",
- "read-snapshot": "./tests/read-terminal-snapshots.sh",
- "test": "ts-node -P tests/tsconfig.json -r tsconfig-paths/register node_modules/jest/bin/jest.js --config ./tests/jest.config.cjs",
- "test:cov": "ts-node -P tests/tsconfig.json -r tsconfig-paths/register node_modules/jest/bin/jest.js --coverage --config ./tests/jest.config.cjs"
- },
- "simple-git-hooks": {
- "pre-commit": "yarn lint-staged",
- "prepare-commit-msg": "[ -t 1 ] && exec < /dev/tty && git cz --hook || true",
- "pre-push": "yarn test"
- },
- "type": "module",
- "types": "./dist/index.d.ts",
- "version": "4.0.5"
- }
|