123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- {
- "name": "@apollo/protobufjs",
- "version": "1.2.2",
- "versionScheme": "~",
- "description": "Protocol Buffers for JavaScript (& TypeScript).",
- "author": "Daniel Wirtz <dcode+protobufjs@dcode.io>",
- "license": "BSD-3-Clause",
- "repository": {
- "type": "git",
- "url": "https://github.com/apollographql/protobuf.js.git"
- },
- "bugs": "https://github.com/apollographql/protobuf.js/issues",
- "homepage": "https://github.com/apollographql/protobuf.js",
- "keywords": [
- "protobuf",
- "protocol-buffers",
- "serialization",
- "typescript"
- ],
- "main": "index.js",
- "types": "index.d.ts",
- "bin": {
- "apollo-pbjs": "bin/pbjs",
- "apollo-pbts": "bin/pbts"
- },
- "scripts": {
- "bench": "node bench",
- "build": "gulp --gulpfile scripts/gulpfile.js",
- "changelog": "node scripts/changelog -w",
- "coverage": "istanbul --config=config/istanbul.json cover node_modules/tape/bin/tape tests/*.js tests/node/*.js",
- "docs": "jsdoc -c config/jsdoc.json -R README.md --verbose --pedantic",
- "lint": "eslint **/*.js -c config/eslint.json && tslint **/*.d.ts -e **/node_modules/** -t stylish -c config/tslint.json",
- "pages": "node scripts/pages",
- "prepublish": "node scripts/prepublish",
- "postinstall": "node scripts/postinstall",
- "prof": "node bench/prof",
- "test": "tape -r ./lib/tape-adapter tests/*.js tests/node/*.js",
- "test-types": "tsc tests/comp_typescript.ts --lib es2015 --strictNullChecks --experimentalDecorators --emitDecoratorMetadata && tsc tests/data/test.js.ts --lib es2015 --noEmit --strictNullChecks && tsc tests/data/rpc.ts --lib es2015 --noEmit --strictNullChecks",
- "types": "node 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/inquire/index.js lib/path/index.js lib/pool/index.js lib/utf8/index.js && npm run test-types",
- "make": "npm run test && npm run types && npm run build && npm run lint",
- "release": "npm run make && npm run changelog"
- },
- "dependencies": {
- "@protobufjs/aspromise": "^1.1.2",
- "@protobufjs/base64": "^1.1.2",
- "@protobufjs/codegen": "^2.0.4",
- "@protobufjs/eventemitter": "^1.1.0",
- "@protobufjs/fetch": "^1.1.0",
- "@protobufjs/float": "^1.0.2",
- "@protobufjs/inquire": "^1.1.0",
- "@protobufjs/path": "^1.1.2",
- "@protobufjs/pool": "^1.1.0",
- "@protobufjs/utf8": "^1.1.0",
- "@types/long": "^4.0.0",
- "@types/node": "^10.1.0",
- "long": "^4.0.0"
- },
- "devDependencies": {
- "benchmark": "^2.1.4",
- "browserify": "^16.2.3",
- "browserify-wrap": "^1.0.2",
- "bundle-collapser": "^1.3.0",
- "chalk": "^2.4.1",
- "escodegen": "^1.9.1",
- "eslint": "^4.19.1",
- "espree": "^3.5.4",
- "estraverse": "^4.2.0",
- "gh-pages": "^1.2.0",
- "git-raw-commits": "^1.3.6",
- "git-semver-tags": "^1.3.6",
- "glob": "^7.1.2",
- "google-protobuf": "^3.5.0",
- "gulp": "^4.0.0",
- "gulp-header": "^2.0.5",
- "gulp-if": "^2.0.1",
- "gulp-sourcemaps": "^2.6.4",
- "gulp-uglify": "^3.0.0",
- "istanbul": "^0.4.5",
- "jaguarjs-jsdoc": "github:dcodeIO/jaguarjs-jsdoc",
- "jsdoc": "^3.6.3",
- "minimist": "^1.2.0",
- "reflect-metadata": "^0.1.12",
- "semver": "^5.5.0",
- "tape": "^4.9.0",
- "tmp": "0.0.33",
- "tslint": "^5.10.0",
- "typescript": "^2.8.3",
- "uglify-js": "^3.3.25",
- "vinyl-buffer": "^1.0.1",
- "vinyl-fs": "^3.0.3",
- "vinyl-source-stream": "^2.0.0"
- },
- "cliDependencies": [
- "semver",
- "chalk",
- "glob",
- "jsdoc",
- "minimist",
- "tmp",
- "uglify-js",
- "espree",
- "escodegen",
- "estraverse"
- ],
- "files": [
- "index.js",
- "index.d.ts",
- "light.d.ts",
- "light.js",
- "minimal.d.ts",
- "minimal.js",
- "package-lock.json",
- "tsconfig.json",
- "scripts/postinstall.js",
- "bin/**",
- "cli/**",
- "dist/**",
- "ext/**",
- "google/**",
- "src/**"
- ]
- }
|