智慧水务管理系统 - 精河县供水工程综合管理平台

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. {
  2. "name": "protobufjs",
  3. "version": "8.6.3",
  4. "description": "Protocol Buffers for JavaScript & TypeScript.",
  5. "author": "Daniel Wirtz <dcode+protobufjs@dcode.io>",
  6. "license": "BSD-3-Clause",
  7. "repository": "protobufjs/protobuf.js",
  8. "bugs": "https://github.com/protobufjs/protobuf.js/issues",
  9. "engines": {
  10. "node": ">=12.0.0"
  11. },
  12. "keywords": [
  13. "protobuf",
  14. "protocol-buffers",
  15. "serialization",
  16. "typescript"
  17. ],
  18. "main": "index.js",
  19. "type": "commonjs",
  20. "types": "index.d.ts",
  21. "browser": {
  22. "fs": false
  23. },
  24. "scripts": {
  25. "bench": "node bench",
  26. "build": "npm run build:bundle && npm run build:types",
  27. "build:bundle": "gulp --gulpfile scripts/gulpfile.js",
  28. "build:tests": "node ./scripts/gentests.js",
  29. "build:types": "node cli/bin/pbts --main --global protobuf --out index.d.ts src/ && node cli/bin/pbts --main --import \"\\$protobuf=..\" --out ext/descriptor.generated.d.ts ext/descriptor.js && node cli/bin/pbts --main --import \"\\$protobuf=..\" --out ext/textformat.generated.d.ts ext/textformat.js && node cli/bin/pbts --main --import \"\\$protobuf=..\" --out ext/protojson.generated.d.ts ext/protojson.js",
  30. "coverage": "npm run coverage:test && npm run coverage:report",
  31. "coverage:test": "nyc --silent tape -r ./lib/tape-adapter tests/*.js tests/node/*.js",
  32. "coverage:report": "nyc report --reporter=lcov --reporter=text",
  33. "docs": "npm run docs:build",
  34. "docs:build": "jsdoc -c config/jsdoc.json -R README.md --verbose --pedantic",
  35. "docs:publish": "npm run docs:build && node scripts/pages",
  36. "lint": "npm run lint:sources && npm run lint:types",
  37. "lint:sources": "eslint \"**/*.js\"",
  38. "lint:types": "tslint \"**/*.d.ts\" -e \"**/node_modules/**\" -t stylish -c config/tslint.json",
  39. "prepublish": "cd cli && npm install && cd .. && npm run build",
  40. "prepublishOnly": "cd cli && npm install && cd .. && npm run build",
  41. "prof": "node bench/prof",
  42. "test": "npm run test:sources && npm run test:types",
  43. "test:sources": "tape -r ./lib/tape-adapter tests/*.js tests/node/*.js",
  44. "test:types": "tsc tests/comp_typescript.ts --target es2019 --module commonjs --types node --lib es2019 --esModuleInterop --strictNullChecks --experimentalDecorators --emitDecoratorMetadata && tsc -p tsconfig.test-types.json",
  45. "make": "npm run lint:sources && npm run build && npm run lint:types && npm run build:tests && npm test"
  46. },
  47. "dependencies": {
  48. "long": "^5.3.2"
  49. },
  50. "devDependencies": {
  51. "@eslint/js": "^10.0.0",
  52. "@types/node": ">=13.7.0",
  53. "browserify": "^17.0.0",
  54. "browserify-wrap": "^1.0.2",
  55. "bundle-collapser": "^1.3.0",
  56. "escodegen": "^1.13.0",
  57. "eslint": "^10.0.0",
  58. "eslint-plugin-jsdoc": "^62.9.0",
  59. "espree": "^9.0.0",
  60. "estraverse": "^5.1.0",
  61. "gh-pages": "^6.0.0",
  62. "globals": "^17.0.0",
  63. "gulp": "^5.0.0",
  64. "gulp-header": "^2.0.9",
  65. "gulp-if": "^3.0.0",
  66. "gulp-sourcemaps": "^3.0.0",
  67. "gulp-uglify": "^3.0.2",
  68. "jsdoc": "^4.0.0",
  69. "minimist": "^1.2.8",
  70. "nyc": "^18.0.0",
  71. "reflect-metadata": "^0.2.0",
  72. "tape": "^5.0.0",
  73. "tslint": "^6.0.0",
  74. "typescript": "^3.7.5",
  75. "vinyl-buffer": "^1.0.1",
  76. "vinyl-fs": "^4.0.0",
  77. "vinyl-source-stream": "^2.0.0"
  78. },
  79. "files": [
  80. "index.js",
  81. "index.d.ts",
  82. "light.d.ts",
  83. "light.js",
  84. "minimal.d.ts",
  85. "minimal.js",
  86. "package-lock.json",
  87. "tsconfig.json",
  88. "dist/**",
  89. "ext/**",
  90. "google/**",
  91. "src/**"
  92. ]
  93. }