package.json 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. {
  2. "_from": "protobufjs@^5.0.1",
  3. "_id": "protobufjs@5.0.3",
  4. "_inBundle": false,
  5. "_integrity": "sha512-55Kcx1MhPZX0zTbVosMQEO5R6/rikNXd9b6RQK4KSPcrSIIwoXTtebIczUrXlwaSrbz4x8XUVThGPob1n8I4QA==",
  6. "_location": "/protobufjs",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "protobufjs@^5.0.1",
  12. "name": "protobufjs",
  13. "escapedName": "protobufjs",
  14. "rawSpec": "^5.0.1",
  15. "saveSpec": null,
  16. "fetchSpec": "^5.0.1"
  17. },
  18. "_requiredBy": [
  19. "/leancloud-realtime"
  20. ],
  21. "_resolved": "https://registry.npmmirror.com/protobufjs/-/protobufjs-5.0.3.tgz",
  22. "_shasum": "e4dfe9fb67c90b2630d15868249bcc4961467a17",
  23. "_spec": "protobufjs@^5.0.1",
  24. "_where": "D:\\website\\Other\\score\\node_modules\\leancloud-realtime",
  25. "author": {
  26. "name": "Daniel Wirtz",
  27. "email": "dcode@dcode.io"
  28. },
  29. "bin": {
  30. "pbjs": "bin/pbjs"
  31. },
  32. "browser": {
  33. "fs": false,
  34. "path": false
  35. },
  36. "bugs": {
  37. "url": "https://github.com/dcodeIO/protobuf.js/issues"
  38. },
  39. "bundleDependencies": false,
  40. "contributors": [
  41. {
  42. "name": "Frank Xu",
  43. "email": "yyfrankyy@gmail.com"
  44. }
  45. ],
  46. "dependencies": {
  47. "ascli": "~1",
  48. "bytebuffer": "~5",
  49. "glob": "^7.0.5",
  50. "yargs": "^3.10.0"
  51. },
  52. "deprecated": false,
  53. "description": "Protocol Buffers for JavaScript. Finally.",
  54. "devDependencies": {
  55. "closurecompiler": "~1",
  56. "fixture-stdout": "^0.2.1",
  57. "jsdoc": "~3.3.0-alpha10",
  58. "metascript": ">=0.18 <1",
  59. "testjs": "~1 >=1.0.4"
  60. },
  61. "engines": {
  62. "node": ">=0.8"
  63. },
  64. "homepage": "https://github.com/dcodeIO/protobuf.js",
  65. "keywords": [
  66. "net",
  67. "buffer",
  68. "protobuf",
  69. "serialization",
  70. "bytebuffer",
  71. "websocket",
  72. "webrtc"
  73. ],
  74. "license": "Apache-2.0",
  75. "main": "./dist/protobuf.js",
  76. "name": "protobufjs",
  77. "repository": {
  78. "type": "git",
  79. "url": "git+https://github.com/dcodeIO/protobuf.js.git"
  80. },
  81. "scripts": {
  82. "build": "node scripts/build.js",
  83. "compile": "npm run-script compile-full && npm run-script compile-light",
  84. "compile-full": "ccjs dist/protobuf.js --create_source_map=dist/protobuf.min.map --compilation_level=SIMPLE_OPTIMIZATIONS > dist/protobuf.min.js",
  85. "compile-light": "ccjs dist/protobuf-light.js --create_source_map=dist/protobuf-light.min.map --compilation_level=SIMPLE_OPTIMIZATIONS > dist/protobuf-light.min.js",
  86. "compress": "npm run-script compress-full && npm run-script compress-light",
  87. "compress-full": "gzip -c -9 dist/protobuf.min.js > dist/protobuf.min.js.gz",
  88. "compress-light": "gzip -c -9 dist/protobuf-light.min.js > dist/protobuf-light.min.js.gz",
  89. "descriptor2json": "node bin/pbjs src/google/protobuf/descriptor.proto --target=json > src/google/protobuf/descriptor.json",
  90. "jsdoc": "node node_modules/jsdoc/jsdoc.js -c jsdoc.json",
  91. "make": "npm run-script build && npm run-script compile && npm run-script descriptor2json && npm run-script compress && npm test && npm run-script jsdoc",
  92. "prepublish": "npm test",
  93. "test": "node bin/pbjs tests/complex.proto --target=json > tests/complex.json && node node_modules/testjs/bin/testjs tests/suite.js"
  94. },
  95. "version": "5.0.3"
  96. }