package.json 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. {
  2. "_args": [
  3. [
  4. "cli-highlight@2.1.4",
  5. "E:\\item\\newItem\\admin"
  6. ]
  7. ],
  8. "_development": true,
  9. "_from": "cli-highlight@2.1.4",
  10. "_id": "cli-highlight@2.1.4",
  11. "_inBundle": false,
  12. "_integrity": "sha512-s7Zofobm20qriqDoU9sXptQx0t2R9PEgac92mENNm7xaEe1hn71IIMsXMK+6encA6WRCWWxIGQbipr3q998tlQ==",
  13. "_location": "/cli-highlight",
  14. "_phantomChildren": {
  15. "@types/color-name": "1.1.1",
  16. "camelcase": "5.3.1",
  17. "decamelize": "1.2.0",
  18. "emoji-regex": "8.0.0",
  19. "require-directory": "2.1.1",
  20. "set-blocking": "2.0.0",
  21. "which-module": "2.0.0",
  22. "y18n": "4.0.0"
  23. },
  24. "_requested": {
  25. "type": "version",
  26. "registry": true,
  27. "raw": "cli-highlight@2.1.4",
  28. "name": "cli-highlight",
  29. "escapedName": "cli-highlight",
  30. "rawSpec": "2.1.4",
  31. "saveSpec": null,
  32. "fetchSpec": "2.1.4"
  33. },
  34. "_requiredBy": [
  35. "/@vue/cli-service"
  36. ],
  37. "_resolved": "https://registry.npmjs.org/cli-highlight/-/cli-highlight-2.1.4.tgz",
  38. "_spec": "2.1.4",
  39. "_where": "E:\\item\\newItem\\admin",
  40. "author": {
  41. "name": "Felix Becker",
  42. "email": "felix.b@outlook.com"
  43. },
  44. "bin": {
  45. "highlight": "./bin/highlight"
  46. },
  47. "bugs": {
  48. "url": "https://github.com/felixfbecker/cli-highlight/issues"
  49. },
  50. "commitlint": {
  51. "extends": [
  52. "@commitlint/config-conventional"
  53. ]
  54. },
  55. "dependencies": {
  56. "chalk": "^3.0.0",
  57. "highlight.js": "^9.6.0",
  58. "mz": "^2.4.0",
  59. "parse5": "^5.1.1",
  60. "parse5-htmlparser2-tree-adapter": "^5.1.1",
  61. "yargs": "^15.0.0"
  62. },
  63. "description": "Syntax highlighting in your terminal",
  64. "devDependencies": {
  65. "@commitlint/cli": "^8.2.0",
  66. "@commitlint/config-conventional": "^8.2.0",
  67. "@sourcegraph/prettierrc": "^3.0.0",
  68. "@sourcegraph/tslint-config": "^11.0.1",
  69. "@types/highlight.js": "^9.12.1",
  70. "@types/jest": "^24.0.9",
  71. "@types/mz": "0.0.32",
  72. "@types/node": "^8.0.53",
  73. "@types/parse5": "^5.0.2",
  74. "@types/parse5-htmlparser2-tree-adapter": "^5.0.1",
  75. "@types/yargs": "^13.0.0",
  76. "husky": "^3.0.0",
  77. "jest": "^24.1.0",
  78. "prettier": "^1.12.1",
  79. "semantic-release": "^15.13.4",
  80. "ts-jest": "^24.0.0",
  81. "tslint": "^5.8.0",
  82. "typedoc": "^0.15.0",
  83. "typescript": "~3.6.4"
  84. },
  85. "engines": {
  86. "node": ">=8.0.0",
  87. "npm": ">=5.0.0"
  88. },
  89. "files": [
  90. "dist",
  91. "bin",
  92. "README.md",
  93. "LICENSE.txt"
  94. ],
  95. "homepage": "https://github.com/felixfbecker/cli-highlight#readme",
  96. "husky": {
  97. "hooks": {
  98. "commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
  99. }
  100. },
  101. "jest": {
  102. "collectCoverage": true,
  103. "transform": {
  104. "^.+\\.tsx?$": "ts-jest"
  105. },
  106. "testRegex": "(/test/.*|/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
  107. "testPathIgnorePatterns": [
  108. "/node_modules/",
  109. "/src/test/__fixtures__/"
  110. ],
  111. "coverageReporters": [
  112. "json",
  113. "text"
  114. ],
  115. "moduleFileExtensions": [
  116. "ts",
  117. "tsx",
  118. "js",
  119. "jsx",
  120. "json"
  121. ]
  122. },
  123. "keywords": [
  124. "terminal",
  125. "syntax",
  126. "highlight",
  127. "color",
  128. "cli",
  129. "ansi"
  130. ],
  131. "license": "ISC",
  132. "main": "dist/index.js",
  133. "name": "cli-highlight",
  134. "repository": {
  135. "type": "git",
  136. "url": "git+https://github.com/felixfbecker/cli-highlight.git"
  137. },
  138. "scripts": {
  139. "build": "tsc -p .",
  140. "lint": "npm run tslint && npm run prettier",
  141. "prettier": "prettier --write --list-different '**/{*.ts,*.json,.prettierrc}'",
  142. "semantic-release": "semantic-release",
  143. "test": "jest",
  144. "tslint": "tslint -c tslint.json -p tsconfig.json",
  145. "typedoc": "typedoc --media media --mode file --excludeNotExported --out typedoc src/index.ts",
  146. "watch": "tsc -p . -w"
  147. },
  148. "types": "dist/index.d.ts",
  149. "version": "2.1.4"
  150. }