package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "@apollographql/apollo-tools",
  3. "version": "0.5.4",
  4. "author": "Apollo GraphQL <packages@apollographql.com>",
  5. "license": "MIT",
  6. "repository": {
  7. "type": "git",
  8. "url": "git+https://github.com/apollographql/apollo-tooling.git"
  9. },
  10. "homepage": "https://github.com/apollographql/apollo-tooling",
  11. "bugs": "https://github.com/apollographql/apollo-tooling/issues",
  12. "main": "lib/index.js",
  13. "types": "lib/index.d.ts",
  14. "engines": {
  15. "node": ">=8",
  16. "npm": ">=6"
  17. },
  18. "peerDependencies": {
  19. "graphql": "^14.2.1 || ^15.0.0 || ^16.0.0"
  20. },
  21. "jest": {
  22. "preset": "ts-jest",
  23. "testEnvironment": "node",
  24. "testMatch": null,
  25. "testRegex": "/__tests__/.*\\.test\\.(js|ts)$",
  26. "testPathIgnorePatterns": [
  27. "<rootDir>/node_modules/",
  28. "<rootDir>/lib/"
  29. ],
  30. "moduleFileExtensions": [
  31. "ts",
  32. "js"
  33. ],
  34. "transformIgnorePatterns": [
  35. "/node_modules/"
  36. ],
  37. "snapshotSerializers": [
  38. "<rootDir>/src/__tests__/snapshotSerializers/astSerializer.ts",
  39. "<rootDir>/src/__tests__/snapshotSerializers/graphQLTypeSerializer.ts"
  40. ],
  41. "globals": {
  42. "ts-jest": {
  43. "tsconfig": "<rootDir>/tsconfig.test.json",
  44. "diagnostics": false
  45. }
  46. }
  47. },
  48. "gitHead": "58b96377de23b35f31264fda805d967a63a800c7"
  49. }