peer-calls/package.json
Jerko Steiner aa2f3f47d8 Fix a bug introduced by SocketIO not having consistent ids
During the time of the initial release of Peer Calls, the server and
client sockets used to have different namespaces - one side had `/#`
prepended to the name, whereas the other did not, so I had to check for
this in the code.

This was fixed since the release of [SocketIO v1.5.0][1], thus breaking the
compatibility with PeerCalls. Any new `npm install` would break this
because of the way it works - it tries to install the latest available
"compatible" release.

As of this commit, the SocketIO version is locked to v1.6.0.

[1]: https://github.com/socketio/socket.io/releases/tag/1.5.0
2016-11-22 11:10:08 -05:00

57 lines
1.5 KiB
JSON

{
"name": "peer-calls",
"version": "1.3.2",
"description": "Group peer to peer video calls for anybody.",
"repository": "https://github.com/jeremija/peer-calls",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"test": "jest --coverage",
"testify": "jest --watch",
"lint": "eslint ./index.js ./src/js"
},
"author": "",
"license": "MIT",
"dependencies": {
"bluebird": "^3.3.4",
"express": "^4.13.3",
"flux": "^2.1.1",
"jade": "^1.11.0",
"react": "^0.14.8",
"react-addons-css-transition-group": "^0.14.8",
"react-dom": "^0.14.8",
"simple-peer": "^6.0.3",
"socket.io": "1.6.0",
"socket.io-client": "1.6.0",
"underscore": "^1.8.3",
"uuid": "^2.0.1"
},
"devDependencies": {
"babel-jest": "^10.0.1",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babelify": "^7.2.0",
"browserify-middleware": "^7.0.0",
"eslint": "^2.5.3",
"eslint-plugin-react": "^4.2.3",
"jest-cli": "^0.10.0",
"less-middleware": "^2.0.1",
"react-addons-test-utils": "^0.14.8",
"uglify-js": "^2.6.2"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/debug",
"<rootDir>/node_modules/fbjs",
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-addons-test-utils",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/underscore"
],
"modulePathIgnorePatterns": [
"<rootDir>/node_modules/"
]
}
}