package.json 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. {
  2. "_args": [
  3. [
  4. "eslint-friendly-formatter@3.0.0",
  5. "E:\\2023\\5\\myjadmin"
  6. ]
  7. ],
  8. "_development": true,
  9. "_from": "eslint-friendly-formatter@3.0.0",
  10. "_id": "eslint-friendly-formatter@3.0.0",
  11. "_inBundle": false,
  12. "_integrity": "sha512-QJnemSH+g5i9yxQQNGQo1yM6VPR1PdNVIE8krQTNdTf3MDg9D22At/BfZpTPRkCdWEtiFCTZnZUOKTPNufqOYw==",
  13. "_location": "/eslint-friendly-formatter",
  14. "_phantomChildren": {
  15. "escape-string-regexp": "1.0.5",
  16. "has-ansi": "2.0.0",
  17. "strip-ansi": "3.0.1"
  18. },
  19. "_requested": {
  20. "type": "version",
  21. "registry": true,
  22. "raw": "eslint-friendly-formatter@3.0.0",
  23. "name": "eslint-friendly-formatter",
  24. "escapedName": "eslint-friendly-formatter",
  25. "rawSpec": "3.0.0",
  26. "saveSpec": null,
  27. "fetchSpec": "3.0.0"
  28. },
  29. "_requiredBy": [
  30. "#DEV:/"
  31. ],
  32. "_resolved": "https://registry.npmjs.org/eslint-friendly-formatter/-/eslint-friendly-formatter-3.0.0.tgz",
  33. "_spec": "3.0.0",
  34. "_where": "E:\\2023\\5\\myjadmin",
  35. "author": {
  36. "name": "Roy Riojas",
  37. "url": "http://royriojas.com"
  38. },
  39. "bugs": {
  40. "url": "https://github.com/royriojas/eslint-friendly-formatter/issues"
  41. },
  42. "changelogx": {
  43. "issueIDRegExp": "#(\\d+)",
  44. "commitURL": "https://github.com/royriojas/eslint-friendly-formatter/commit/{0}",
  45. "authorURL": "https://github.com/{0}",
  46. "issueIDURL": "https://github.com/royriojas/eslint-friendly-formatter/issues/{0}",
  47. "projectName": "eslint-friendly-formatter"
  48. },
  49. "dependencies": {
  50. "chalk": "^1.0.0",
  51. "coalescy": "1.0.0",
  52. "extend": "^3.0.0",
  53. "minimist": "^1.2.0",
  54. "text-table": "^0.2.0"
  55. },
  56. "description": " simple formatter/reporter for eslint that's friendly with Sublime Text and iterm2 'click to open file' functionality",
  57. "devDependencies": {
  58. "changelogx": "^1.0.18",
  59. "esbeautifier": "10.1.1",
  60. "eslint": "^2.10.2",
  61. "glob-expand": "0.2.1",
  62. "istanbul": "^0.3.17",
  63. "mocha-runner": "^1.0.8",
  64. "precommit": "1.2.2",
  65. "prepush": "3.1.11",
  66. "proxyquire": "^1.6.0",
  67. "read-file": "^0.1.2",
  68. "read-json-sync": "^1.1.0",
  69. "watch-spawn": "^1.0.3",
  70. "write": "^0.2.0"
  71. },
  72. "engines": {
  73. "node": ">=0.10.0"
  74. },
  75. "files": [
  76. "index.js",
  77. "process.js"
  78. ],
  79. "homepage": "https://github.com/royriojas/eslint-friendly-formatter#readme",
  80. "keywords": [
  81. "eslint",
  82. "formatter",
  83. "reporter",
  84. "eslint formatter",
  85. "stylish"
  86. ],
  87. "license": "MIT",
  88. "main": "index.js",
  89. "name": "eslint-friendly-formatter",
  90. "precommit": [
  91. "npm run verify"
  92. ],
  93. "prepush": [
  94. "npm run verify"
  95. ],
  96. "repository": {
  97. "type": "git",
  98. "url": "git+https://github.com/royriojas/eslint-friendly-formatter.git"
  99. },
  100. "scripts": {
  101. "beautify": "esbeautifier './index.js' 'test/specs/**/*.js'",
  102. "beautify-check": "esbeautifier -k './index.js' 'test/specs/**/*.js'",
  103. "bump-major": "npm run pre-v && npm version major -m 'BLD: Release v%s' && npm run post-v",
  104. "bump-minor": "npm run pre-v && npm version minor -m 'BLD: Release v%s' && npm run post-v",
  105. "bump-patch": "npm run pre-v && npm version patch -m 'BLD: Release v%s' && npm run post-v",
  106. "changelog": "changelogx -f markdown -o ./changelog.md",
  107. "check": "npm run beautify-check && npm run eslint",
  108. "cover": "istanbul cover -x 'test/specs/**/*.js' mocha-runner 'test/specs/**/*.js' html text-summary",
  109. "do-changelog": "npm run changelog && git add ./changelog.md && git commit -m 'DOC: Generate changelog' --no-verify",
  110. "eslint": "eslint --format './index.js' index.js test/specs/ -c './configs/eslint.json'",
  111. "install-hooks": "prepush install && changelogx install-hook && precommit install",
  112. "lint": "npm run beautify-check && npm run eslint",
  113. "lint-fix": "npm run beautify && npm run eslint -- --fix",
  114. "post-v": "npm run do-changelog && git push --no-verify && git push --tags --no-verify",
  115. "pre-v": "npm run verify",
  116. "test": "npm run lint && mocha-runner 'test/specs/**/*.js'",
  117. "verify": "npm run check && npm test",
  118. "watch": "npm run cover && watch-spawn -i -p 'test/specs/**/*.js' istanbul cover test/runner.js html text-summary"
  119. },
  120. "version": "3.0.0"
  121. }