{
  "name": "@cerebral/preact",
  "version": "5.0.0",
  "type": "commonjs",
  "description": "Preact view for Cerebral",
  "main": "index.js",
  "author": "Christian Alfoni <christianalfoni@gmail.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/cerebral/cerebral.git"
  },
  "bugs": {
    "url": "https://github.com/cerebral/cerebral/issues"
  },
  "homepage": "http://cerebral.github.io/cerebral-website",
  "scripts": {
    "build": "cross-env BABEL_ENV=production babel src/ --out-dir=lib/ -s",
    "coverage": "nyc --reporter=lcov --reporter=json npm run test",
    "prepublish": "npm run build",
    "test": "NODE_ENV=test mocha -r test/setup --require @babel/register \"src/**/*.test.{js,jsx}\"",
    "test:watch": "npm run test -- --watch"
  },
  "dependencies": {
    "cerebral": "6.0.0",
    "prop-types": "^15.8.1"
  },
  "peerDependencies": {
    "preact": ">=8.0.0 <11.0.0"
  },
  "nyc": {
    "exclude": [
      "node_modules",
      "lib",
      "test",
      "**/*.test.js",
      "**/testHelper.js"
    ]
  }
}