package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "gcp-metadata",
  3. "version": "6.1.0",
  4. "description": "Get the metadata from a Google Cloud Platform environment",
  5. "repository": "googleapis/gcp-metadata",
  6. "main": "./build/src/index.js",
  7. "types": "./build/src/index.d.ts",
  8. "files": [
  9. "build/src"
  10. ],
  11. "scripts": {
  12. "compile": "cross-env NODE_OPTIONS=--max-old-space-size=8192 tsc -p .",
  13. "fix": "gts fix",
  14. "pretest": "npm run compile",
  15. "prepare": "npm run compile",
  16. "samples-test": "npm link && cd samples/ && npm link ../ && npm test && cd ../",
  17. "presystem-test": "npm run compile",
  18. "system-test": "mocha build/system-test --timeout 600000",
  19. "test": "c8 mocha --timeout=5000 build/test",
  20. "docs": "compodoc src/",
  21. "lint": "gts check",
  22. "docs-test": "linkinator docs",
  23. "predocs-test": "npm run docs",
  24. "prelint": "cd samples; npm link ../; npm install",
  25. "clean": "gts clean",
  26. "precompile": "gts clean"
  27. },
  28. "keywords": [
  29. "google cloud platform",
  30. "google cloud",
  31. "google",
  32. "app engine",
  33. "compute engine",
  34. "metadata server",
  35. "metadata"
  36. ],
  37. "author": "Stephen Sawchuk",
  38. "license": "Apache-2.0",
  39. "dependencies": {
  40. "gaxios": "^6.0.0",
  41. "json-bigint": "^1.0.0"
  42. },
  43. "devDependencies": {
  44. "@compodoc/compodoc": "^1.1.10",
  45. "@google-cloud/functions": "^3.0.0",
  46. "@types/json-bigint": "^1.0.0",
  47. "@types/mocha": "^9.0.0",
  48. "@types/ncp": "^2.0.1",
  49. "@types/node": "^20.0.0",
  50. "@types/sinon": "^17.0.0",
  51. "@types/tmp": "0.2.6",
  52. "@types/uuid": "^9.0.0",
  53. "c8": "^8.0.0",
  54. "cross-env": "^7.0.3",
  55. "gcbuild": "^1.3.4",
  56. "gcx": "^1.0.0",
  57. "gts": "^5.0.0",
  58. "linkinator": "^4.0.0",
  59. "mocha": "^8.0.0",
  60. "ncp": "^2.0.0",
  61. "nock": "^13.0.0",
  62. "sinon": "^17.0.0",
  63. "tmp": "^0.2.0",
  64. "typescript": "^5.1.6",
  65. "uuid": "^9.0.0"
  66. },
  67. "engines": {
  68. "node": ">=14"
  69. }
  70. }