dota2-fork
Version:
A node-steam plugin for Dota 2. Fork with fresh updates
66 lines (65 loc) • 2.4 kB
JSON
{
"name": "protobufjs-dota",
"version": "1.0.1",
"description": "Protocol Buffers for Dota2. This is fork of protobufjs",
"author": "Vlad Poshvaniuk <vladlovedance@gmail.com>",
"contributors": [
"vladlovedance <vladlovedance@gmail.com>"
],
"main": "./dist/protobuf.js",
"bin": {
"pbjs": "./bin/pbjs"
},
"repository": {
"type": "git",
"url": "https://github.com/k0mar12/protobufjs-dota"
},
"bugs": {
"url": "https://github.com/k0mar12/protobufjs-dota/issues"
},
"homepage": "https://github.com/k0mar12/protobufjs-dota",
"keywords": [
"net",
"buffer",
"protobuf",
"serialization",
"bytebuffer",
"websocket",
"webrtc"
],
"dependencies": {
"ascli": "~1",
"bytebuffer": "~5",
"glob": "^7.0.5",
"google-closure-compiler": "^20221102.0.1",
"yargs": "^3.10.0"
},
"devDependencies": {
"fixture-stdout": "^0.2.1",
"jsdoc": "~3.3.0-alpha10",
"metascript": ">=0.18 <1",
"testjs": "~1 >=1.0.4"
},
"license": "Apache-2.0",
"engines": {
"node": ">=0.8"
},
"browser": {
"fs": false,
"path": false
},
"scripts": {
"prepublish": "npm test",
"test": "node bin/pbjs tests/complex.proto --target=json > tests/complex.json && node node_modules/testjs/bin/testjs tests/suite.js",
"make": "npm run-script build && npm run-script compile && npm run-script descriptor2json && npm run-script compress && npm test && npm run-script jsdoc",
"build": "node scripts/build.js",
"descriptor2json": "node bin/pbjs src/google/protobuf/descriptor.proto --target=json > src/google/protobuf/descriptor.json",
"compile": "npm run-script compile-full && npm run-script compile-light",
"compile-full": "google-closure-compiler dist/protobuf.js --create_source_map=dist/protobuf.min.map --compilation_level=SIMPLE_OPTIMIZATIONS > dist/protobuf.min.js",
"compile-light": "google-closure-compiler dist/protobuf-light.js --create_source_map=dist/protobuf-light.min.map --compilation_level=SIMPLE_OPTIMIZATIONS > dist/protobuf-light.min.js",
"compress": "npm run-script compress-full && npm run-script compress-light",
"compress-full": "gzip -c -9 dist/protobuf.min.js > dist/protobuf.min.js.gz",
"compress-light": "gzip -c -9 dist/protobuf-light.min.js > dist/protobuf-light.min.js.gz",
"jsdoc": "node node_modules/jsdoc/jsdoc.js -c jsdoc.json"
}
}