{
  "name": "messagepack",
  "version": "1.1.12",
  "description": "A MessagePack implementation for JavaScript.",
  "main": "dist/messagepack.cjs.js",
  "module": "dist/messagepack.es.js",
  "jsnext:main": "dist/messagepack.es.js",
  "types": "dist/types/index.d.ts",
  "files": [
    "dist",
    "README.md"
  ],
  "keywords": [
    "msgpack",
    "messagepack",
    "serialization"
  ],
  "scripts": {
    "prebuild": "rm -rf dist/*",
    "build": "rollup -c rollup.lib.js",
    "pretest": "rm -rf build/*",
    "test": "rollup -c rollup.test.js && testsome build/tests.js",
    "prepublishOnly": "npm run build && npm run test"
  },
  "author": "mprot",
  "license": "MIT",
  "homepage": "https://github.com/mprot/msgpack-js",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mprot/msgpack-js.git"
  },
  "devDependencies": {
    "@types/node": "^14.6.0",
    "rollup": "^2.26.3",
    "rollup-plugin-tsc": "^1.1.16",
    "testsome": "^1.0.3"
  }
}
