package.json 609 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "graphql",
  3. "version": "14.7.0",
  4. "description": "A Query Language and Runtime which can target any service.",
  5. "license": "MIT",
  6. "main": "index",
  7. "module": "index.mjs",
  8. "types": "index.d.ts",
  9. "sideEffects": false,
  10. "homepage": "https://github.com/graphql/graphql-js",
  11. "bugs": {
  12. "url": "https://github.com/graphql/graphql-js/issues"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "https://github.com/graphql/graphql-js.git"
  17. },
  18. "keywords": [
  19. "graphql",
  20. "graphql-js"
  21. ],
  22. "engines": {
  23. "node": ">= 6.x"
  24. },
  25. "dependencies": {
  26. "iterall": "^1.2.2"
  27. }
  28. }