basant307/AI_Governance_Project
048
1{2 "name": "protobufjs",3 "version": "7.6.4",4 "versionScheme": "~",5 "description": "Protocol Buffers for JavaScript (& TypeScript).",6 "author": "Daniel Wirtz <dcode+protobufjs@dcode.io>",7 "license": "BSD-3-Clause",8 "repository": "protobufjs/protobuf.js",9 "bugs": "https://github.com/protobufjs/protobuf.js/issues",10 "homepage": "https://protobufjs.github.io/protobuf.js/",11 "engines": {12 "node": ">=12.0.0"13 },14 "eslintConfig": {15 "env": {16 "es6": true17 },18 "parserOptions": {19 "ecmaVersion": 620 }21 },22 "keywords": [23 "protobuf",24 "protocol-buffers",25 "serialization",26 "typescript"27 ],28 "main": "index.js",29 "types": "index.d.ts",30 "browser": {31 "fs": false32 },33 "publishConfig": {34 "tag": "latest-7"35 },36 "scripts": {37 "bench": "node bench",38 "build": "npm run build:bundle && npm run build:types",39 "build:bundle": "gulp --gulpfile scripts/gulpfile.js",40 "build:types": "node cli/bin/pbts --main --global protobuf --out index.d.ts src/ lib/aspromise/index.js lib/base64/index.js lib/codegen/index.js lib/eventemitter/index.js lib/float/index.js lib/fetch/index.js lib/path/index.js lib/pool/index.js lib/utf8/index.js",41 "changelog": "node scripts/changelog -w",42 "coverage": "npm run coverage:test && npm run coverage:report",43 "coverage:test": "nyc --silent tape -r ./lib/tape-adapter tests/*.js tests/node/*.js",44 "coverage:report": "nyc report --reporter=lcov --reporter=text",45 "docs": "jsdoc -c config/jsdoc.json -R README.md --verbose --pedantic",46 "lint": "npm run lint:sources && npm run lint:types",47 "lint:sources": "eslint \"**/*.js\" -c config/eslint.json",48 "lint:types": "tslint \"**/*.d.ts\" -e \"**/node_modules/**\" -t stylish -c config/tslint.json",49 "pages": "node scripts/pages",50 "prepublish": "cd cli && npm install && cd .. && npm run build",51 "prepublishOnly": "cd cli && npm install && cd .. && npm run build",52 "postinstall": "node scripts/postinstall",53 "prof": "node bench/prof",54 "test": "npm run test:sources && npm run test:types",55 "test:sources": "tape -r ./lib/tape-adapter tests/*.js tests/node/*.js",56 "test:types": "tsc tests/comp_typescript.ts --lib es2015 --esModuleInterop --strictNullChecks --experimentalDecorators --emitDecoratorMetadata && tsc tests/data/test.js.ts --lib es2015 --esModuleInterop --noEmit --strictNullChecks && tsc tests/data/*.ts --lib es2015 --esModuleInterop --noEmit --strictNullChecks",57 "make": "npm run lint:sources && npm run build && npm run lint:types && node ./scripts/gentests.js && npm test"58 },59 "dependencies": {60 "@protobufjs/aspromise": "^1.1.2",61 "@protobufjs/base64": "^1.1.2",62 "@protobufjs/codegen": "^2.0.5",63 "@protobufjs/eventemitter": "^1.1.1",64 "@protobufjs/fetch": "^1.1.1",65 "@protobufjs/float": "^1.0.2",66 "@protobufjs/path": "^1.1.2",67 "@protobufjs/pool": "^1.1.0",68 "@protobufjs/utf8": "^1.1.1",69 "@types/node": ">=13.7.0",70 "long": "^5.3.2"71 },72 "devDependencies": {73 "benchmark": "^2.1.4",74 "browserify": "^17.0.0",75 "browserify-wrap": "^1.0.2",76 "bundle-collapser": "^1.3.0",77 "chalk": "^4.0.0",78 "escodegen": "^1.13.0",79 "eslint": "^8.15.0",80 "espree": "^9.0.0",81 "estraverse": "^5.1.0",82 "gh-pages": "^4.0.0",83 "git-raw-commits": "^2.0.3",84 "git-semver-tags": "^4.0.0",85 "google-protobuf": "^3.11.3",86 "gulp": "^4.0.2",87 "gulp-header": "^2.0.9",88 "gulp-if": "^3.0.0",89 "gulp-sourcemaps": "^3.0.0",90 "gulp-uglify": "^3.0.2",91 "jaguarjs-jsdoc": "github:dcodeIO/jaguarjs-jsdoc",92 "jsdoc": "^4.0.0",93 "minimist": "^1.2.0",94 "nyc": "^15.0.0",95 "reflect-metadata": "^0.1.13",96 "tape": "^5.0.0",97 "tslint": "^6.0.0",98 "typescript": "^3.7.5",99 "uglify-js": "^3.7.7",100 "vinyl-buffer": "^1.0.1",101 "vinyl-fs": "^3.0.3",102 "vinyl-source-stream": "^2.0.0"103 },104 "files": [105 "index.js",106 "index.d.ts",107 "light.d.ts",108 "light.js",109 "minimal.d.ts",110 "minimal.js",111 "package-lock.json",112 "tsconfig.json",113 "scripts/postinstall.js",114 "dist/**",115 "ext/**",116 "google/**",117 "src/**"118 ]119}120 