package.json 3.9 KB

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