package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "name": "egg-jsonp",
  3. "version": "2.0.0",
  4. "description": "jsonp support for egg",
  5. "eggPlugin": {
  6. "name": "jsonp",
  7. "optionalDependencies": [
  8. "security"
  9. ]
  10. },
  11. "files": [
  12. "app",
  13. "lib",
  14. "config"
  15. ],
  16. "keywords": [
  17. "egg",
  18. "egg-plugin",
  19. "jsonp",
  20. "security"
  21. ],
  22. "dependencies": {
  23. "is-type-of": "^1.2.0",
  24. "jsonp-body": "^1.0.0"
  25. },
  26. "devDependencies": {
  27. "autod": "^2.10.1",
  28. "egg": "next",
  29. "egg-bin": "^4.3.5",
  30. "egg-ci": "^1.8.0",
  31. "egg-mock": "^3.13.1",
  32. "eslint": "^4.10.0",
  33. "eslint-config-egg": "^5.1.1",
  34. "supertest": "^3.0.0",
  35. "webstorm-disable-index": "^1.2.0"
  36. },
  37. "engines": {
  38. "node": ">=8.0.0"
  39. },
  40. "scripts": {
  41. "test": "npm run lint -- --fix && npm run test-local",
  42. "test-local": "egg-bin test",
  43. "cov": "egg-bin cov",
  44. "lint": "eslint .",
  45. "ci": "npm run lint && npm run cov && egg-bin pkgfiles --check",
  46. "autod": "autod"
  47. },
  48. "ci": {
  49. "version": "8, 9"
  50. },
  51. "repository": {
  52. "type": "git",
  53. "url": "git+https://github.com/eggjs/egg-jsonp.git"
  54. },
  55. "bugs": {
  56. "url": "https://github.com/eggjs/egg/issues"
  57. },
  58. "homepage": "https://github.com/eggjs/egg-jsonp#readme",
  59. "author": "dead-horse",
  60. "license": "MIT",
  61. "boilerplate": {
  62. "name": "egg-boilerplate-plugin",
  63. "version": "1.7.0",
  64. "description": "boilerplate for egg plugin",
  65. "repository": {
  66. "type": "git",
  67. "url": "git@github.com:eggjs/egg-boilerplate-plugin.git"
  68. },
  69. "homepage": "https://github.com/eggjs/egg-boilerplate-plugin"
  70. }
  71. }