Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. {
  2. "name": "get-installed-path",
  3. "version": "2.1.1",
  4. "description": "Get installation path where the given package is installed. Works for globally and locally installed packages. Works on Windows too.",
  5. "repository": "tunnckoCore/get-installed-path",
  6. "author": "Charlike Mike Reagent <@tunnckoCore> (http://i.am.charlike.online)",
  7. "precommit.silent": true,
  8. "main": "index.js",
  9. "license": "MIT",
  10. "scripts": {
  11. "lint": "eslint *.js --format codeframe --fix",
  12. "pretest": "npm run lint",
  13. "test": "npm run coverage",
  14. "posttest": "npm run lint:coverage",
  15. "coverage": "nyc node test.js",
  16. "lint:coverage": "nyc check-coverage",
  17. "prerelease": "npm test",
  18. "release": "standard-version --sign --no-verify",
  19. "precommit": "git add --all",
  20. "commit": "git-cz"
  21. },
  22. "dependencies": {
  23. "global-modules": "1.0.0"
  24. },
  25. "devDependencies": {
  26. "commitizen": "2.9.6",
  27. "cz-conventional-changelog": "2.0.0",
  28. "eslint": "4.5.0",
  29. "eslint-config-standard-tunnckocore": "1.0.7",
  30. "mkdirp": "^0.5.1",
  31. "mukla": "0.4.9",
  32. "nyc": "10.0.0",
  33. "pkg-dir": "2.0.0",
  34. "pre-commit": "1.2.2",
  35. "rimraf": "2.6.1",
  36. "standard-version": "4.2.0"
  37. },
  38. "files": [
  39. "index.js"
  40. ],
  41. "keywords": [
  42. "filepath",
  43. "get",
  44. "global",
  45. "globally",
  46. "install",
  47. "installed",
  48. "local",
  49. "locally",
  50. "npm",
  51. "package",
  52. "path",
  53. "pkg",
  54. "resolve"
  55. ],
  56. "config": {
  57. "commitizen": {
  58. "path": "./node_modules/cz-conventional-changelog"
  59. }
  60. },
  61. "verb": {
  62. "run": true,
  63. "toc": {
  64. "render": true,
  65. "method": "preWrite",
  66. "maxdepth": 3,
  67. "footer": ""
  68. },
  69. "layout": "empty",
  70. "tasks": [
  71. "readme"
  72. ],
  73. "related": {
  74. "list": [
  75. "always-done",
  76. "minibase",
  77. "try-catch-core",
  78. "detect-installed",
  79. "is-installed",
  80. "global-modules",
  81. "global-prefix",
  82. "global-paths"
  83. ],
  84. "highlight": "detect-installed"
  85. },
  86. "reflinks": [
  87. "always-done",
  88. "async-done",
  89. "base",
  90. "charlike",
  91. "commitizen",
  92. "dezalgo",
  93. "global-modules",
  94. "once",
  95. "standard-version",
  96. "verb",
  97. "verb-generate-readme"
  98. ],
  99. "lint": {
  100. "reflinks": true
  101. },
  102. "relateds": {
  103. "hightlight": {
  104. "detect-installed": true
  105. }
  106. }
  107. }
  108. }