package.json 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. {
  2. "_from": "listr2@^2.6.0",
  3. "_id": "listr2@2.6.2",
  4. "_inBundle": false,
  5. "_integrity": "sha512-6x6pKEMs8DSIpA/tixiYY2m/GcbgMplMVmhQAaLFxEtNSKLeWTGjtmU57xvv6QCm2XcqzyNXL/cTSVf4IChCRA==",
  6. "_location": "/listr2",
  7. "_phantomChildren": {
  8. "aggregate-error": "3.1.0"
  9. },
  10. "_requested": {
  11. "type": "range",
  12. "registry": true,
  13. "raw": "listr2@^2.6.0",
  14. "name": "listr2",
  15. "escapedName": "listr2",
  16. "rawSpec": "^2.6.0",
  17. "saveSpec": null,
  18. "fetchSpec": "^2.6.0"
  19. },
  20. "_requiredBy": [
  21. "/lint-staged"
  22. ],
  23. "_resolved": "https://registry.npmjs.org/listr2/-/listr2-2.6.2.tgz",
  24. "_shasum": "4912eb01e1e2dd72ec37f3895a56bf2622d6f36a",
  25. "_spec": "listr2@^2.6.0",
  26. "_where": "D:\\qianger\\7\\jindouyunNewFront\\node_modules\\lint-staged",
  27. "author": {
  28. "name": "Cenk Kilic",
  29. "email": "cenk@kilic.dev",
  30. "url": "https://srcs.kilic.dev"
  31. },
  32. "bugs": {
  33. "url": "https://github.com/cenk1cenk2/listr2/issues"
  34. },
  35. "bundleDependencies": false,
  36. "config": {
  37. "commitizen": {
  38. "path": "./node_modules/@cenk1cenk2/cz-cc"
  39. }
  40. },
  41. "dependencies": {
  42. "chalk": "^4.1.0",
  43. "cli-truncate": "^2.1.0",
  44. "figures": "^3.2.0",
  45. "indent-string": "^4.0.0",
  46. "log-update": "^4.0.0",
  47. "p-map": "^4.0.0",
  48. "rxjs": "^6.6.2",
  49. "through": "^2.3.8"
  50. },
  51. "deprecated": false,
  52. "description": "Terminal task list reborn! Create beautiful CLI interfaces via easy and logical to implement task lists that feel alive and interactive.",
  53. "devDependencies": {
  54. "@cenk1cenk2/cz-cc": "^1.1.3",
  55. "@cenk1cenk2/eslint-config": "^0.4.9",
  56. "@types/jest": "^26.0.10",
  57. "@types/node": "^14.6.1",
  58. "@types/rewire": "^2.5.28",
  59. "delay": "^4.4.0",
  60. "enquirer": "^2.3.6",
  61. "eslint": "^7.7.0",
  62. "husky": "^4.2.5",
  63. "jest": "^26.4.2",
  64. "jest-mock-process": "^1.4.0",
  65. "lint-staged": "^10.2.13",
  66. "prettier": "^2.1.1",
  67. "rewire": "^5.0.0",
  68. "rimraf": "^3.0.2",
  69. "ts-jest": "^26.3.0",
  70. "ts-loader": "^8.0.3",
  71. "ts-node": "^9.0.0",
  72. "tsc-watch": "^4.2.9",
  73. "tsconfig-paths": "^3.9.0",
  74. "tscpaths": "^0.0.9",
  75. "typescript": "^4.0.2"
  76. },
  77. "engines": {
  78. "node": ">=10.0.0"
  79. },
  80. "homepage": "https://github.com/cenk1cenk2/listr2#readme",
  81. "husky": {
  82. "hooks": {
  83. "pre-commit": "lint-staged",
  84. "prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
  85. "pre-push": "yarn test"
  86. }
  87. },
  88. "keywords": [
  89. "listr",
  90. "cli",
  91. "task",
  92. "list",
  93. "tasklist",
  94. "terminal",
  95. "term",
  96. "console",
  97. "ascii",
  98. "unicode",
  99. "loading",
  100. "indicator",
  101. "progress",
  102. "busy",
  103. "wait",
  104. "idle"
  105. ],
  106. "license": "MIT",
  107. "lint-staged": {
  108. "./*.{ts,js,tsx,jsx}": [
  109. "prettier --write",
  110. "eslint --fix"
  111. ],
  112. "./*.{json,md}": [
  113. "prettier --write"
  114. ]
  115. },
  116. "main": "./dist/index.js",
  117. "name": "listr2",
  118. "peerDependencies": {
  119. "enquirer": ">= 2.3.0 < 3"
  120. },
  121. "repository": {
  122. "type": "git",
  123. "url": "git+https://github.com/cenk1cenk2/listr2.git"
  124. },
  125. "scripts": {
  126. "build": "tsc -P tsconfig.build.json",
  127. "clean": "rimraf node_modules yarn.lock",
  128. "dev:build": "yarn prebuild && tsc -p tsconfig.json && yarn postbuild",
  129. "dev:start": "yarn dev:build && TS_NODE_PROJECT='tsconfig.paths.json' tsc-watch --noClear --onSuccess \"yarn postbuild\"",
  130. "dev:test": "LISTR_DISABLE_COLOR=1 ts-node -P tests/tsconfig.json -r tsconfig-paths/register node_modules/jest/bin/jest.js --verbose --watchAll --config ./tests/jest.config.js",
  131. "example": "ts-node -r tsconfig-paths/register",
  132. "lint": "prettier --write src/ && eslint --ext .ts,.js,.tsx,.jsx --fix src/",
  133. "lint:check": "eslint --ext .ts,.js,.tsx,.jsx src/",
  134. "postbuild": "tscpaths -p tsconfig.paths.json -s ./dist -o ./dist",
  135. "prebuild": "rimraf tsconfig*.tsbuildinfo && rimraf dist/",
  136. "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",
  137. "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"
  138. },
  139. "types": "./dist/index.d.ts",
  140. "version": "2.6.2"
  141. }