{
  "name": "@prostory/mountain",
  "version": "1.0.0-alpha.3",
  "description": "Yet another HTTP/2 server and client.",
  "type": "module",
  "main": "./index.js",
  "exports": {
    ".": "./index.js",
    "./index": "./index.js",
    "./index.js": "./index.js"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/YevhenKap/mountain"
  },
  "scripts": {
    "clean": "rimraf build",
    "copy:docs": "cpy README.md build",
    "copy:changelog": "cpy CHANGELOG.md build",
    "copy:license": "cpy LICENSE build",
    "copy:package": "cpy package.json build",
    "copy": "npm run copy:docs; npm run copy:changelog; npm run copy:license; npm run copy:package",
    "prebuild": "npm run clean",
    "build": "rollup -c",
    "postbuild": "npm run copy",
    "prerelease": "npm run build",
    "release": "npm publish build/ --access public",
    "test": "jest"
  },
  "keywords": [
    "Server",
    "Client",
    "HTTP/2"
  ],
  "author": "Kapelianovych Yevhen",
  "license": "MIT",
  "peerDependencies": {
    "busboy": "^0.3.1",
    "mime": "^2.5.0"
  },
  "devDependencies": {
    "@rollup/plugin-typescript": "^8.2.0",
    "@types/busboy": "^0.2.3",
    "@types/jest": "^26.0.23",
    "@types/mime": "^2.0.3",
    "@types/node": "^15.6.0",
    "cpy-cli": "^3.1.1",
    "jest": "^26.6.3",
    "prettier": "^2.3.0",
    "rimraf": "^3.0.2",
    "rollup": "^2.48.0",
    "rollup-plugin-terser": "^7.0.2",
    "ts-jest": "^26.5.6",
    "tslib": "^2.2.0",
    "typescript": "^4.2.4"
  }
}
