feathers-socket-commons
Version:
Shared functionality for websocket providers
73 lines (72 loc) • 2.11 kB
JSON
{
"name": "feathers-socket-commons",
"description": "Shared functionality for websocket providers",
"version": "2.4.0",
"homepage": "https://github.com/feathersjs/feathers-socket-commons",
"main": "lib/",
"keywords": [
"feathers",
"feathers-plugin"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/feathersjs/feathers-socket-commons.git"
},
"author": {
"name": "Feathers contributors",
"email": "hello@feathersjs.com",
"url": "https://feathersjs.com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/feathersjs/feathers-socket-commons/issues"
},
"engines": {
"node": ">= 4"
},
"scripts": {
"prepublish": "npm run compile",
"publish": "git push origin --tags && npm run changelog && git push origin",
"changelog": "github_changelog_generator && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"compile": "rimraf 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"
},
"dependencies": {
"debug": "^2.2.0",
"feathers-commons": "^0.8.0",
"feathers-errors": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-core": "^6.4.5",
"babel-plugin-add-module-exports": "^0.2.0",
"babel-polyfill": "^6.9.0",
"babel-preset-es2015": "^6.3.13",
"eslint-if-supported": "^1.0.1",
"feathers": "^2.0.3",
"feathers-socketio": "^1.4.2",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^3.0.0",
"rimraf": "^2.5.4",
"semistandard": "^9.1.0"
}
}