{
  "name": "@srounce/broadcastchannel",
  "version": "1.0.2",
  "description": "send message to other tab in the same origin. use BroadcastChannel as default, use storage event as fallback",
  "main": "index.js",
  "directories": {
    "test": "test"
  },
  "files": [
    "index.js",
    "BroadcastChannel.js",
    "polyfill.js"
  ],
  "dependencies": {},
  "devDependencies": {
    "babel-core": "^6.26.0",
    "babel-loader": "^7.1.4",
    "babel-preset-env": "^1.6.1",
    "eslint": "^4.19.1",
    "eslint-loader": "^2.0.0",
    "eslint-plugin-prettier": "^2.6.0",
    "prettier": "^1.11.1",
    "webpack": "^4.2.0",
    "webpack-cli": "^2.0.13",
    "webpack-dev-server": "^3.1.3"
  },
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "start": "webpack-dev-server --config ./webpack.config.js -w",
    "dev": "npm run -s start",
    "build": "env NODE_ENV='production' webpack --config ./webpack.config.js",
    "clean": "rm ./dist/*.js ./test/*.js",
    "format": "prettier --write 'src/**'",
    "lint": "eslint 'src/**'",
    "prepublish": "npm run -s build"
  },
  "keywords": [
    "cross-tab",
    "message",
    "broadcastchannel"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/legeneek/tab-channel.git"
  },
  "author": "legeneek",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/legeneek/tab-channel/issues"
  },
  "homepage": "https://github.com/legeneek/tab-channel#readme"
}
