package.json 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. {
  2. "_from": "cli-highlight@^2.1.4",
  3. "_id": "cli-highlight@2.1.11",
  4. "_inBundle": false,
  5. "_integrity": "sha512-9KDcoEVwyUXrjcJNvHD0NFc/hiwe/WPVYIleQh2O1N2Zro5gWJZ/K+3DGn8w8P/F6FxOgzyC5bxDyHIgCSPhGg==",
  6. "_location": "/cli-highlight",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "cli-highlight@^2.1.4",
  12. "name": "cli-highlight",
  13. "escapedName": "cli-highlight",
  14. "rawSpec": "^2.1.4",
  15. "saveSpec": null,
  16. "fetchSpec": "^2.1.4"
  17. },
  18. "_requiredBy": [
  19. "/@vue/cli-service"
  20. ],
  21. "_resolved": "https://registry.npmjs.org/cli-highlight/-/cli-highlight-2.1.11.tgz",
  22. "_shasum": "49736fa452f0aaf4fae580e30acb26828d2dc1bf",
  23. "_spec": "cli-highlight@^2.1.4",
  24. "_where": "D:\\qianger\\7\\jindouyunNewFront\\node_modules\\@vue\\cli-service",
  25. "author": {
  26. "name": "Felix Becker",
  27. "email": "felix.b@outlook.com"
  28. },
  29. "bin": {
  30. "highlight": "bin/highlight"
  31. },
  32. "bugs": {
  33. "url": "https://github.com/felixfbecker/cli-highlight/issues"
  34. },
  35. "bundleDependencies": false,
  36. "commitlint": {
  37. "extends": [
  38. "@commitlint/config-conventional"
  39. ]
  40. },
  41. "dependencies": {
  42. "chalk": "^4.0.0",
  43. "highlight.js": "^10.7.1",
  44. "mz": "^2.4.0",
  45. "parse5": "^5.1.1",
  46. "parse5-htmlparser2-tree-adapter": "^6.0.0",
  47. "yargs": "^16.0.0"
  48. },
  49. "deprecated": false,
  50. "description": "Syntax highlighting in your terminal",
  51. "devDependencies": {
  52. "@commitlint/cli": "^11.0.0",
  53. "@commitlint/config-conventional": "^11.0.0",
  54. "@eclass/semantic-release-surge": "^1.0.7",
  55. "@sourcegraph/eslint-config": "^0.20.16",
  56. "@sourcegraph/prettierrc": "^3.0.3",
  57. "@types/jest": "^24.0.9",
  58. "@types/mz": "0.0.32",
  59. "@types/node": "^14.14.9",
  60. "@types/parse5": "^5.0.2",
  61. "@types/parse5-htmlparser2-tree-adapter": "^5.0.1",
  62. "@types/yargs": "^13.0.0",
  63. "eslint": "^7.14.0",
  64. "husky": "^3.0.0",
  65. "jest": "^24.1.0",
  66. "prettier": "^2.2.0",
  67. "semantic-release": "^17.2.4",
  68. "ts-jest": "^24.0.0",
  69. "typedoc": "^0.19.0",
  70. "typescript": "^4.1.2"
  71. },
  72. "engines": {
  73. "node": ">=8.0.0",
  74. "npm": ">=5.0.0"
  75. },
  76. "files": [
  77. "dist",
  78. "bin",
  79. "README.md",
  80. "LICENSE.txt"
  81. ],
  82. "homepage": "https://github.com/felixfbecker/cli-highlight#readme",
  83. "husky": {
  84. "hooks": {
  85. "commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
  86. }
  87. },
  88. "jest": {
  89. "collectCoverage": true,
  90. "transform": {
  91. "^.+\\.tsx?$": "ts-jest"
  92. },
  93. "testRegex": "(/test/.*|/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
  94. "testPathIgnorePatterns": [
  95. "/node_modules/",
  96. "/dist/",
  97. "/src/test/__fixtures__/"
  98. ],
  99. "coverageReporters": [
  100. "json",
  101. "text"
  102. ],
  103. "moduleFileExtensions": [
  104. "ts",
  105. "tsx",
  106. "js",
  107. "jsx",
  108. "json"
  109. ]
  110. },
  111. "keywords": [
  112. "terminal",
  113. "syntax",
  114. "highlight",
  115. "color",
  116. "cli",
  117. "ansi"
  118. ],
  119. "license": "ISC",
  120. "main": "dist/index.js",
  121. "name": "cli-highlight",
  122. "release": {
  123. "branches": [
  124. "main"
  125. ],
  126. "plugins": [
  127. "@semantic-release/commit-analyzer",
  128. "@semantic-release/release-notes-generator",
  129. "@semantic-release/npm",
  130. "@semantic-release/github",
  131. [
  132. "@eclass/semantic-release-surge",
  133. {
  134. "alias": "cli-highlight.surge.sh",
  135. "assets": "./typedoc/",
  136. "buildScriptName": "typedoc"
  137. }
  138. ]
  139. ]
  140. },
  141. "repository": {
  142. "type": "git",
  143. "url": "git+https://github.com/felixfbecker/cli-highlight.git"
  144. },
  145. "scripts": {
  146. "build": "tsc -p .",
  147. "eslint": "eslint 'src/**/*.ts'",
  148. "lint": "npm run eslint && npm run prettier",
  149. "prettier": "prettier --write --list-different '**/{*.ts,*.json,.prettierrc}'",
  150. "semantic-release": "semantic-release",
  151. "test": "jest",
  152. "typedoc": "typedoc --media media --mode file --excludeNotExported --out typedoc src/index.ts",
  153. "watch": "tsc -p . -w"
  154. },
  155. "types": "dist/index.d.ts",
  156. "version": "2.1.11"
  157. }