package.json 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. {
  2. "name": "eslint-friendly-formatter",
  3. "version": "4.0.1",
  4. "description": " simple formatter/reporter for eslint that's friendly with Sublime Text and iterm2 'click to open file' functionality",
  5. "repository": "royriojas/eslint-friendly-formatter",
  6. "license": "MIT",
  7. "author": {
  8. "name": "Roy Riojas",
  9. "url": "http://royriojas.com"
  10. },
  11. "main": "index.js",
  12. "files": [
  13. "index.js",
  14. "process.js"
  15. ],
  16. "engines": {
  17. "node": ">=0.10.0"
  18. },
  19. "scripts": {
  20. "beautify": "esbeautifier './index.js' 'test/specs/**/*.js'",
  21. "beautify-check": "esbeautifier -k './index.js' 'test/specs/**/*.js'",
  22. "eslint": "eslint --format './index.js' index.js test/specs/ -c './configs/eslint.json'",
  23. "lint-fix": "npm run beautify && npm run eslint -- --fix",
  24. "lint": "npm run beautify-check && npm run eslint",
  25. "test": "npm run lint && FORCE_ITERM_HINT=true mocha-runner 'test/specs/**/*.js'",
  26. "test:update": "CHAI_JEST_SNAPSHOT_UPDATE_ALL=true npm test",
  27. "cover": "istanbul cover -x 'test/specs/**/*.js' mocha-runner 'test/specs/**/*.js' html text-summary",
  28. "watch": "npm run cover && watch-spawn -i -p 'test/specs/**/*.js' istanbul cover test/runner.js html text-summary",
  29. "check": "npm run beautify-check && npm run eslint",
  30. "verify": "npm run check && npm test",
  31. "changelog": "changelogx -f markdown -o ./changelog.md",
  32. "do-changelog": "npm run changelog && git add ./changelog.md && git commit -m 'DOC: Generate changelog' --no-verify",
  33. "install-hooks": "prepush install && changelogx install-hook && precommit install",
  34. "pre-v": "npm run verify",
  35. "post-v": "npm run do-changelog && git push --no-verify && git push --tags --no-verify",
  36. "bump-major": "npm run pre-v && npm version major -m 'BLD: Release v%s' && npm run post-v",
  37. "bump-minor": "npm run pre-v && npm version minor -m 'BLD: Release v%s' && npm run post-v",
  38. "bump-patch": "npm run pre-v && npm version patch -m 'BLD: Release v%s' && npm run post-v"
  39. },
  40. "keywords": [
  41. "eslint",
  42. "formatter",
  43. "reporter",
  44. "eslint formatter",
  45. "stylish"
  46. ],
  47. "prepush": [
  48. "npm run verify"
  49. ],
  50. "precommit": [
  51. "npm run verify"
  52. ],
  53. "devDependencies": {
  54. "chai-jest-snapshot": "2.0.0",
  55. "changelogx": "^1.0.18",
  56. "esbeautifier": "10.1.1",
  57. "eslint": "^2.10.2",
  58. "glob-expand": "0.2.1",
  59. "istanbul": "^0.3.17",
  60. "mocha-runner": "^1.0.8",
  61. "precommit": "1.2.2",
  62. "prepush": "3.1.11",
  63. "proxyquire": "^1.6.0",
  64. "read-file": "^0.1.2",
  65. "read-json-sync": "^1.1.0",
  66. "snap-shot": "2.17.0",
  67. "watch-spawn": "^1.0.3",
  68. "write": "^0.2.0"
  69. },
  70. "dependencies": {
  71. "chalk": "^2.0.1",
  72. "coalescy": "1.0.0",
  73. "extend": "^3.0.0",
  74. "minimist": "^1.2.0",
  75. "strip-ansi": "^4.0.0",
  76. "text-table": "^0.2.0"
  77. },
  78. "changelogx": {
  79. "issueIDRegExp": "#(\\d+)",
  80. "commitURL": "https://github.com/royriojas/eslint-friendly-formatter/commit/{0}",
  81. "authorURL": "https://github.com/{0}",
  82. "issueIDURL": "https://github.com/royriojas/eslint-friendly-formatter/issues/{0}",
  83. "projectName": "eslint-friendly-formatter"
  84. }
  85. }