{
  "name": "a-msgpack",
  "version": "5.0.2",
  "description": "A minimalistic NEAT (MessagePack based) encoder and decoder for JavaScript.",
  "author": "Stephane Rufer <stephane@arista.com>",
  "homepage": "https://aristanetworks.github.io/cloudvision/modules/a_msgpack.html",
  "repository": {
    "type": "git",
    "url": "https://github.com/aristanetworks/cloudvision.git"
  },
  "license": "MIT",
  "main": "lib/MsgPack.js",
  "unpkg": "dist/MsgPack.js",
  "module": "es/MsgPack.js",
  "typings": "typings/index.d.ts",
  "typedocMain": "src/index.ts",
  "scripts": {
    "bench": "cd ./benchmark-msgpack && npm run bench > ../last-benchmark-results.txt",
    "build": "npm run clean && npm run build:es && npm run build:commonjs && npm run build:umd && npm run build:umd:min && npm run build:types && npm run docs && npm run docs:md",
    "build:commonjs": "cross-env NODE_ENV=cjs rollup -c -o lib/MsgPack.js",
    "build:es": "cross-env BABEL_ENV=es NODE_ENV=es rollup -c -o es/MsgPack.js",
    "build:types": "rimraf typings && tsc --emitDeclarationOnly -p tsconfig-build.json -outDir ./typings",
    "build:umd": "cross-env BABEL_ENV=es NODE_ENV=development rollup -c -o dist/MsgPack.js",
    "build:umd:min": "cross-env BABEL_ENV=es NODE_ENV=production rollup -c -o dist/MsgPack.min.js",
    "check": "npm run lint && npm run type-check && npm run prettier-check",
    "clean": "rimraf dist lib es",
    "docs": "typedoc --plugin none --out docs/html",
    "docs:md": "typedoc --plugin typedoc-plugin-markdown --theme markdown --out docs/md",
    "lint": "eslint --max-warnings 0 --ext .js,.ts *.js src/**/*.ts test/**/*.ts types/**/*.ts",
    "prepare": "npm run build",
    "prettier-check": "prettier -c *.js src/**/*.ts",
    "prettier-fix": "prettier --write *.js src/**/*.ts",
    "test": "jest",
    "test:all": "npm run test && npm run test:purejs && npm run test:forcete",
    "test:clean": "rimraf .jest-cache",
    "test:cov": "rimraf coverage && npm run test -- --coverage && npm run test:purejs && npm run test:forcete -- --coverage",
    "test:forcete": "cross-env TEXT_ENCODING=force TEXT_DECODING=force jest",
    "test:purejs": "cross-env TEXT_ENCODING=never TEXT_DECODING=never jest",
    "test:watch": "npm run test -- --watch",
    "type-check": "tsc --noEmit"
  },
  "keywords": [
    "binary",
    "decode",
    "encode",
    "json",
    "messagepack",
    "msgpack",
    "serialize"
  ],
  "files": [
    "dist",
    "es",
    "lib",
    "src",
    "typings"
  ],
  "dependencies": {
    "base64-js": "1.5.1",
    "jsbi": "4.3.0"
  },
  "devDependencies": {
    "@arista/prettier-config": "1.1.4",
    "@rollup/plugin-commonjs": "22.0.2",
    "@rollup/plugin-node-resolve": "13.3.0",
    "@rollup/plugin-typescript": "8.5.0",
    "@types/base64-js": "1.3.0",
    "@types/jest": "27.5.2",
    "@types/js-yaml": "4.0.5",
    "@typescript-eslint/eslint-plugin": "5.32.0",
    "@typescript-eslint/parser": "5.32.0",
    "babel-eslint": "10.1.0",
    "cross-env": "7.0.3",
    "eslint": "8.25.0",
    "eslint-config-arista-js": "2.0.3",
    "eslint-config-arista-ts": "2.0.1",
    "eslint-plugin-arista": "0.2.3",
    "eslint-plugin-import": "2.26.0",
    "jest": "27.5.1",
    "js-yaml": "4.1.0",
    "prettier": "2.7.1",
    "rimraf": "3.0.2",
    "rollup": "2.79.1",
    "rollup-plugin-terser": "7.0.2",
    "ts-jest": "27.1.5",
    "tslib": "2.4.0",
    "typedoc": "0.23.16",
    "typedoc-plugin-markdown": "3.13.6",
    "typescript": "4.8.4"
  },
  "gitHead": "f38eb90c5dcd4d156fed96e2e4598169c23732ed"
}
