{
  "name": "@gamestdio/websocket",
  "version": "0.3.2",
  "description": "WebSocket browser client with reconnect back-off feature.",
  "repository": {
    "type": "git",
    "url": "git://github.com/gamestdio/websocket.git"
  },
  "main": "lib/index.js",
  "types": "types/index.d.ts",
  "scripts": {
    "start": "npm run prepublish & nodemon ./examples/server.js",
    "dist": "browserify ./src/index.js -t babelify -s WebSocketClient -o dist/websocket.js && uglifyjs dist/websocket.js > dist/websocket.min.js",
    "prepublish": "babel src -d lib --compact",
    "test": "npm run prepublish && mocha test/*_test.js && npm run test-types",
    "test-types": "tsc --noEmit types/test.ts"
  },
  "engines": {
    "node": ">=0.12.0"
  },
  "devDependencies": {
    "babel-cli": "^6.1.2",
    "babel-preset-es2015": "^6.1.2",
    "babelify": "^7.2.0",
    "browserify": "^12.0.1",
    "express": "^4.13.3",
    "mocha": "^5.2.0",
    "nodemon": "^1.7.1",
    "typescript": "^2.9.2",
    "uglify-js": "^2.6.1",
    "ws": "^6.1.2"
  },
  "react-native": {
    "ws": false
  },
  "browser": {
    "ws": false
  }
}
