Your IP : 216.73.216.17


Current Path : /etc/kibana/node_modules/pbf/
Upload File :
Current File : //etc/kibana/node_modules/pbf/package.json

{
  "name": "pbf",
  "version": "3.1.0",
  "description": "a low-level, lightweight protocol buffers implementation in JavaScript",
  "main": "index.js",
  "scripts": {
    "test": "eslint index.js compile.js test/*.js bench/bench-tiles.js bin/pbf && tap test/*.test.js",
    "cov": "tap test/*.test.js --cov --coverage-report=html",
    "build-min": "mkdirp dist && browserify index.js -s Pbf | uglifyjs -c warnings=false -m > dist/pbf.js",
    "build-dev": "mkdirp dist && browserify index.js -d -s Pbf > dist/pbf-dev.js",
    "prepublish": "npm run build-dev && npm run build-min"
  },
  "bin": {
    "pbf": "bin/pbf"
  },
  "repository": {
    "type": "git",
    "url": "git@github.com:mapbox/pbf.git"
  },
  "keywords": [
    "protocol",
    "buffer",
    "pbf",
    "protobuf",
    "binary",
    "format",
    "serialization",
    "encoder",
    "decoder"
  ],
  "author": "Konstantin Kaefer",
  "license": "BSD-3-Clause",
  "bugs": {
    "url": "https://github.com/mapbox/pbf/issues"
  },
  "homepage": "https://github.com/mapbox/pbf",
  "dependencies": {
    "ieee754": "^1.1.6",
    "resolve-protobuf-schema": "^2.0.0"
  },
  "devDependencies": {
    "benchmark": "^2.1.0",
    "browserify": "^14.4.0",
    "eslint": "^4.2.0",
    "eslint-config-mourner": "^2.0.1",
    "mkdirp": "^0.5.1",
    "protocol-buffers": "^3.1.6",
    "tap": "^10.7.0",
    "tile-stats-runner": "^1.0.0",
    "uglify-js": "^3.0.25"
  },
  "eslintConfig": {
    "extends": "mourner",
    "rules": {
      "space-before-function-paren": [
        2,
        "never"
      ],
      "key-spacing": 0,
      "no-empty": 0,
      "global-require": 0,
      "indent": [
        2,
        4,
        {
          "flatTernaryExpressions": true
        }
      ]
    }
  }
}