source: trip-planner-front/node_modules/engine.io/package.json@ 6c1585f

Last change on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.7 KB
Line 
1{
2 "name": "engine.io",
3 "version": "4.1.1",
4 "description": "The realtime engine behind Socket.IO. Provides the foundation of a bidirectional connection between client and server",
5 "main": "lib/engine.io.js",
6 "author": "Guillermo Rauch <guillermo@learnboost.com>",
7 "homepage": "https://github.com/socketio/engine.io",
8 "contributors": [
9 {
10 "name": "Eugen Dueck",
11 "web": "https://github.com/EugenDueck"
12 },
13 {
14 "name": "Afshin Mehrabani",
15 "web": "https://github.com/afshinm"
16 },
17 {
18 "name": "Christoph Dorn",
19 "web": "https://github.com/cadorn"
20 },
21 {
22 "name": "Mark Mokryn",
23 "email": "mokesmokes@gmail.com"
24 }
25 ],
26 "license": "MIT",
27 "dependencies": {
28 "accepts": "~1.3.4",
29 "base64id": "2.0.0",
30 "cookie": "~0.4.1",
31 "cors": "~2.8.5",
32 "debug": "~4.3.1",
33 "engine.io-parser": "~4.0.0",
34 "ws": "~7.4.2"
35 },
36 "devDependencies": {
37 "babel-eslint": "^8.0.2",
38 "eiows": "^3.3.0",
39 "engine.io-client": "4.1.1",
40 "engine.io-client-v3": "npm:engine.io-client@3.5.0",
41 "eslint": "^4.19.1",
42 "eslint-config-prettier": "^6.9.0",
43 "expect.js": "^0.3.1",
44 "mocha": "^4.0.1",
45 "prettier": "^1.19.1",
46 "s": "0.1.1",
47 "superagent": "^3.8.1"
48 },
49 "scripts": {
50 "lint": "eslint lib/ test/ *.js",
51 "test": "npm run lint && npm run format:check && mocha && EIO_CLIENT=3 mocha && EIO_WS_ENGINE=eiows mocha",
52 "format:check": "prettier --check 'lib/**/*.js' 'test/**/*.js'",
53 "format:fix": "prettier --write 'lib/**/*.js' 'test/**/*.js'"
54 },
55 "repository": {
56 "type": "git",
57 "url": "git@github.com:socketio/engine.io.git"
58 },
59 "files": [
60 "lib/"
61 ],
62 "engines": {
63 "node": ">=10.0.0"
64 }
65}
Note: See TracBrowser for help on using the repository browser.