package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "@octokit/plugin-enterprise-rest",
  3. "version": "6.0.1",
  4. "publishConfig": {
  5. "access": "public",
  6. "tag": "latest"
  7. },
  8. "description": "Octokit plugin for GitHub Enterprise REST APIs",
  9. "directories": {
  10. "test": "test"
  11. },
  12. "scripts": {
  13. "coverage": "tap --coverage-report=html",
  14. "update-endpoints": "npm-run-all update-endpoints:*",
  15. "update-endpoints:fetch-json": "node scripts/update-endpoints/fetch-json",
  16. "update-endpoints:code": "node scripts/update-endpoints/code",
  17. "generate-routes": "node scripts/generate-routes",
  18. "pretest": "npm run lint",
  19. "test": "tap --coverage test.js",
  20. "lint": "prettier --check '{ghe-*,scripts,src}/**/*' README.md package.json test.js",
  21. "lint:fix": "prettier --write '{ghe-*,scripts,src}/**/*' README.md package.json test.js"
  22. },
  23. "repository": {
  24. "type": "git",
  25. "url": "https://github.com/octokit/plugin-enterprise-rest.js.git"
  26. },
  27. "keywords": [
  28. "octokit",
  29. "github",
  30. "api",
  31. "rest",
  32. "plugin",
  33. "enterprise"
  34. ],
  35. "author": "Gregor Martynus (https://github.com/gr2m)",
  36. "license": "MIT",
  37. "bugs": {
  38. "url": "https://github.com/octokit/plugin-enterprise-rest.js/issues"
  39. },
  40. "homepage": "https://github.com/octokit/plugin-enterprise-rest.js#readme",
  41. "devDependencies": {
  42. "@octokit/graphql": "^4.2.0",
  43. "lodash.camelcase": "^4.3.0",
  44. "make-dir": "^3.0.0",
  45. "npm-run-all": "^4.1.5",
  46. "prettier": "^1.18.2",
  47. "semantic-release": "^16.0.0",
  48. "simple-mock": "^0.8.0",
  49. "sort-keys": "^4.0.0",
  50. "tap": "^14.0.0"
  51. },
  52. "dependencies": {}
  53. }