Files
socket.io/package.json
2020-01-14 23:02:25 +01:00

89 lines
2.3 KiB
JSON

{
"name": "engine.io-client",
"description": "Client for the realtime Engine",
"license": "MIT",
"version": "3.4.0",
"main": "lib/index.js",
"homepage": "https://github.com/socketio/engine.io-client",
"contributors": [
{
"name": "Guillermo Rauch",
"email": "rauchg@gmail.com"
},
{
"name": "Vladimir Dronnikov",
"email": "dronnikov@gmail.com"
},
{
"name": "Christoph Dorn",
"web": "https://github.com/cadorn"
},
{
"name": "Mark Mokryn",
"email": "mokesmokes@gmail.com"
}
],
"dependencies": {
"component-emitter": "1.2.1",
"debug": "~4.1.0",
"engine.io-parser": "git+https://github.com/socketio/engine.io-parser.git#v4",
"has-cors": "1.1.0",
"indexof": "0.0.1",
"parseqs": "0.0.5",
"parseuri": "0.0.5",
"ws": "~6.1.0",
"xmlhttprequest-ssl": "~1.5.4",
"yeast": "0.1.2"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"blob": "^0.0.4",
"concat-stream": "^1.6.0",
"del": "^2.2.2",
"derequire": "^2.0.6",
"engine.io": "git+https://github.com/socketio/engine.io.git#v4",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"expect.js": "^0.3.1",
"express": "4.15.2",
"gulp": "3.9.1",
"gulp-eslint": "1.1.1",
"gulp-file": "^0.3.0",
"gulp-istanbul": "^1.1.1",
"gulp-mocha": "^4.3.0",
"gulp-task-listing": "1.0.1",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"prettier": "^1.19.1",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-stream": "^3.2.0",
"zuul": "3.11.1",
"zuul-builder-webpack": "^1.2.0",
"zuul-ngrok": "4.0.0"
},
"scripts": {
"test": "npm run lint && npm run format:check && gulp test",
"build": "webpack --config ./support/webpack.config.js",
"format:check": "prettier --check 'lib/**/*.js' 'test/**/*.js'",
"format:fix": "prettier --write 'lib/**/*.js' 'test/**/*.js'",
"lint": "eslint lib/**/*.js test/**/*.js"
},
"browser": {
"ws": false,
"xmlhttprequest-ssl": "./lib/xmlhttprequest.js"
},
"repository": {
"type": "git",
"url": "https://github.com/socketio/engine.io-client.git"
},
"files": [
"index.js",
"lib/",
"dist/"
]
}