package.json 4.0 KB

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