{
  "name": "rpc-cap",
  "version": "4.0.0",
  "description": "A module for adding an object-capabilities system to any JSON-RPC API as middleware for json-rpc-engine",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "scripts": {
    "build": "yarn build:typescript && yarn build:types",
    "build:typescript": "rm -rf dist && tsc",
    "build:types": "./scripts/copyDistTypes.sh",
    "build:watch": "yarn build && tsc -w",
    "lint": "eslint --ext .ts,.js .",
    "lint:fix": "eslint --ext .ts,.js --fix .",
    "prepublishOnly": "yarn build",
    "test": "yarn build:typescript && node test",
    "coverage": "nyc node test",
    "coverage:html": "nyc --reporter=html node test"
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/MetaMask/rpc-cap.git"
  },
  "devDependencies": {
    "@istanbuljs/nyc-config-typescript": "^0.1.3",
    "@metamask/eslint-config": "^1.0.0",
    "@types/node": "^12.0.7",
    "@types/uuid": "^3.4.4",
    "@typescript-eslint/eslint-plugin": "^2.17.0",
    "@typescript-eslint/parser": "^2.17.0",
    "clone": "^2.1.2",
    "eslint": "^6.8.0",
    "nyc": "^15.0.0",
    "tape": "^4.9.2",
    "typescript": "^4.1.2"
  },
  "dependencies": {
    "fast-deep-equal": "^2.0.1",
    "@metamask/controllers": "^5.0.0",
    "eth-rpc-errors": "^3.0.0",
    "is-subset": "^0.1.1",
    "json-rpc-engine": "^5.3.0",
    "uuid": "^3.3.2"
  },
  "files": [
    "dist/"
  ]
}
