package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "grpc-web",
  3. "version": "1.4.2",
  4. "author": "Google Inc.",
  5. "description": "gRPC-Web Client Runtime Library",
  6. "homepage": "https://grpc.io/",
  7. "repository": {
  8. "type": "git",
  9. "url": "https://github.com/grpc/grpc-web.git"
  10. },
  11. "bugs": "https://github.com/grpc/grpc-web/issues",
  12. "files": [
  13. "index.js",
  14. "index.d.ts"
  15. ],
  16. "main": "index.js",
  17. "typings": "index.d.ts",
  18. "scripts": {
  19. "build": "node scripts/build.js",
  20. "prepare": "npm run build",
  21. "prepublishOnly": "npm run build",
  22. "test": "npm run test-jsunit && npm run test-mocha",
  23. "test-mocha": "mocha --timeout 10000 \"./test/**/*_test.js\"",
  24. "test-jsunit": "./scripts/generate_test_files.sh && ./scripts/run_jsunit_tests.sh && rm -rf ./generated"
  25. },
  26. "license": "Apache-2.0",
  27. "devDependencies": {
  28. "@types/google-protobuf": "~3.7.0",
  29. "command-exists": "~1.2.8",
  30. "google-closure-compiler": "~20200224.0.0",
  31. "google-closure-deps": "~20210601.0.0",
  32. "google-closure-library": "~20210808.0.0",
  33. "google-protobuf": "~3.14.0",
  34. "gulp": "~4.0.2",
  35. "gulp-connect": "~5.7.0",
  36. "gulp-eval": "~1.0.0",
  37. "mocha": "~5.2.0",
  38. "mock-xmlhttprequest": "~2.0.0",
  39. "protractor": "~7.0.0",
  40. "typescript": "latest"
  41. }
  42. }