package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "gh-pages",
  3. "version": "4.0.0",
  4. "description": "Publish to a gh-pages branch on GitHub (or any other branch on any other remote)",
  5. "keywords": [
  6. "git",
  7. "gh-pages",
  8. "github"
  9. ],
  10. "author": {
  11. "name": "Tim Schaub",
  12. "url": "http://tschaub.net/"
  13. },
  14. "license": "MIT",
  15. "homepage": "https://github.com/tschaub/gh-pages",
  16. "repository": {
  17. "type": "git",
  18. "url": "git://github.com/tschaub/gh-pages.git"
  19. },
  20. "bugs": {
  21. "url": "https://github.com/tschaub/gh-pages/issues"
  22. },
  23. "main": "lib/index.js",
  24. "scripts": {
  25. "lint": "eslint lib test bin plugin.js",
  26. "pretest": "npm run lint",
  27. "test": "mocha --recursive test"
  28. },
  29. "files": [
  30. "lib",
  31. "bin"
  32. ],
  33. "engines": {
  34. "node": ">=10"
  35. },
  36. "dependencies": {
  37. "async": "^2.6.1",
  38. "commander": "^2.18.0",
  39. "email-addresses": "^3.0.1",
  40. "filenamify": "^4.3.0",
  41. "find-cache-dir": "^3.3.1",
  42. "fs-extra": "^8.1.0",
  43. "globby": "^6.1.0"
  44. },
  45. "devDependencies": {
  46. "chai": "^4.3.6",
  47. "dir-compare": "^1.8.0",
  48. "eslint": "^8.15.0",
  49. "eslint-config-tschaub": "^14.0.0",
  50. "mocha": "^10.0.0",
  51. "sinon": "^14.0.0",
  52. "tmp": "^0.2.1"
  53. },
  54. "bin": {
  55. "gh-pages": "bin/gh-pages.js",
  56. "gh-pages-clean": "bin/gh-pages-clean.js"
  57. },
  58. "eslintConfig": {
  59. "extends": "tschaub",
  60. "rules": {
  61. "jsdoc/check-examples": "off"
  62. }
  63. }
  64. }