{
  "name": "cerebral",
  "version": "6.0.0",
  "description": "A state controller with its own debugger",
  "main": "index.js",
  "module": "./es/index.js",
  "jsnext:main": "./es/index.js",
  "typings": "./index.d.ts",
  "author": "Christian Alfoni <christianalfoni@gmail.com>",
  "contributors": [
    "Aleksey Guryanov <gurianov@gmail.com>"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/cerebral/cerebral.git"
  },
  "bugs": {
    "url": "https://github.com/cerebral/cerebral/issues"
  },
  "homepage": "https://www.cerebraljs.com",
  "scripts": {
    "test": "npm run test:ts && cross-env NODE_ENV=test BABEL_ENV=test mocha -r test/setup -r @babel/register \"src/**/*.test.js\"",
    "test:ts": "cross-env NODE_OPTIONS=--import=tsx mocha \"test/**/*.test.ts\"",
    "test:watch": "npm run test -- --watch",
    "build:cjs": "cross-env BABEL_ENV=cjs babel src/ --out-dir=lib/ -s",
    "build:es": "cross-env BABEL_ENV=es babel src/ --out-dir=es/ -s",
    "build": "run-p build:*",
    "coverage": "nyc --reporter=lcov --reporter=json npm run test",
    "prepublish": "npm run build"
  },
  "dependencies": {
    "es6-error": "^4.1.1",
    "function-tree": "3.3.4"
  },
  "nyc": {
    "exclude": [
      "node_modules",
      "lib",
      "__test__",
      "**/*.test.js",
      "**/testHelper.js"
    ]
  }
}