UNPKG

feathers-socketio

Version:

The Feathers Socket.io real-time API provider

86 lines (85 loc) 2.3 kB
{ "name": "feathers-socketio", "description": "The Feathers Socket.io real-time API provider", "version": "2.0.1", "homepage": "https://github.com/feathersjs/feathers-socketio", "main": "lib/", "types": [ "./index.d.ts", "./client.d.ts" ], "keywords": [ "feathers", "feathers-plugin" ], "license": "MIT", "repository": { "type": "git", "url": "git://github.com/feathersjs/feathers-socketio.git" }, "author": { "name": "Feathers contributors", "email": "hello@feathersjs.com", "url": "https://feathersjs.com" }, "contributors": [], "bugs": { "url": "https://github.com/feathersjs/feathers-socketio/issues" }, "engines": { "node": ">= 4" }, "scripts": { "prepublish": "npm run compile", "publish": "git push origin && git push origin --tags", "release:patch": "npm version patch && npm publish", "release:minor": "npm version minor && npm publish", "release:major": "npm version major && npm publish", "compile": "rimraf -rf lib/ && babel -d lib/ src/", "watch": "babel --watch -d lib/ src/", "lint": "eslint-if-supported semistandard --fix", "mocha": "mocha --opts mocha.opts", "coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --opts mocha.opts", "test": "npm run compile && npm run lint && npm run coverage" }, "semistandard": { "env": [ "mocha" ], "ignore": [ "/lib" ] }, "directories": { "lib": "lib" }, "browser": { "./lib/index": "./lib/client" }, "dependencies": { "@types/socket.io": "~1.4.27", "debug": "^3.0.0", "feathers-socket-commons": "^2.0.0", "socket.io": "^2.0.1", "uberproto": "^1.2.0" }, "devDependencies": { "babel-cli": "^6.3.17", "babel-core": "^6.3.26", "babel-plugin-add-module-exports": "^0.2.0", "babel-plugin-transform-object-assign": "^6.3.13", "babel-preset-es2015": "^6.3.13", "eslint-if-supported": "^1.0.1", "feathers": "^2.0.0", "feathers-commons": "^0.8.0", "feathers-hooks": "^2.0.0", "feathers-memory": "^1.0.0", "istanbul": "^1.1.0-alpha.1", "lodash": "^4.0.1", "mocha": "^4.0.0", "request": "^2.69.0", "rimraf": "^2.5.4", "semistandard": "^11.0.0", "socket.io-client": "^2.0.0" } }