- Timestamp:
- 11/25/21 22:08:24 (3 years ago)
- Branches:
- master
- Children:
- 8d391a1
- Parents:
- 59329aa
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/node_modules/engine.io/package.json
r59329aa re29cc2e 1 1 { 2 "_args": [ 3 [ 4 "engine.io@4.1.1", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "engine.io@4.1.1", 10 "_id": "engine.io@4.1.1", 2 "_from": "engine.io@~6.1.0", 3 "_id": "engine.io@6.1.0", 11 4 "_inBundle": false, 12 "_integrity": "sha512- t2E9wLlssQjGw0nluF6aYyfX8LwYU8Jj0xct+pAhfWfv/YrBn6TSNtEYsgxHIfaMqfrLx07czcMg9bMN6di+3w==",5 "_integrity": "sha512-ErhZOVu2xweCjEfYcTdkCnEYUiZgkAcBBAhW4jbIvNG8SLU3orAqoJCiytZjYF7eTpVmmCrLDjLIEaPlUAs1uw==", 13 6 "_location": "/engine.io", 14 7 "_phantomChildren": {}, 15 8 "_requested": { 16 "type": " version",9 "type": "range", 17 10 "registry": true, 18 "raw": "engine.io@ 4.1.1",11 "raw": "engine.io@~6.1.0", 19 12 "name": "engine.io", 20 13 "escapedName": "engine.io", 21 "rawSpec": " 4.1.1",14 "rawSpec": "~6.1.0", 22 15 "saveSpec": null, 23 "fetchSpec": " 4.1.1"16 "fetchSpec": "~6.1.0" 24 17 }, 25 18 "_requiredBy": [ 26 19 "/socket.io" 27 20 ], 28 "_resolved": "https://registry.npmjs.org/engine.io/-/engine.io-4.1.1.tgz", 29 "_spec": "4.1.1", 30 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 21 "_resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.1.0.tgz", 22 "_shasum": "459eab0c3724899d7b63a20c3a6835cf92857939", 23 "_spec": "engine.io@~6.1.0", 24 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front\\node_modules\\socket.io", 31 25 "author": { 32 26 "name": "Guillermo Rauch", … … 36 30 "url": "https://github.com/socketio/engine.io/issues" 37 31 }, 32 "bundleDependencies": false, 38 33 "contributors": [ 39 34 { … … 55 50 ], 56 51 "dependencies": { 52 "@types/cookie": "^0.4.1", 53 "@types/cors": "^2.8.12", 54 "@types/node": ">=10.0.0", 57 55 "accepts": "~1.3.4", 58 56 "base64id": "2.0.0", … … 60 58 "cors": "~2.8.5", 61 59 "debug": "~4.3.1", 62 "engine.io-parser": "~ 4.0.0",63 "ws": "~ 7.4.2"60 "engine.io-parser": "~5.0.0", 61 "ws": "~8.2.3" 64 62 }, 63 "deprecated": false, 65 64 "description": "The realtime engine behind Socket.IO. Provides the foundation of a bidirectional connection between client and server", 66 65 "devDependencies": { 67 66 "babel-eslint": "^8.0.2", 68 67 "eiows": "^3.3.0", 69 "engine.io-client": "4.1.1", 70 "engine.io-client-v3": "npm:engine.io-client@3.5.0", 71 "eslint": "^4.19.1", 72 "eslint-config-prettier": "^6.9.0", 68 "engine.io-client": "6.1.0", 69 "engine.io-client-v3": "npm:engine.io-client@3.5.2", 73 70 "expect.js": "^0.3.1", 74 "mocha": "^ 4.0.1",71 "mocha": "^9.1.3", 75 72 "prettier": "^1.19.1", 76 "s": "0.1.1", 77 "superagent": "^3.8.1" 73 "rimraf": "^3.0.2", 74 "superagent": "^3.8.1", 75 "typescript": "^4.4.3", 76 "uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.0.0" 78 77 }, 79 78 "engines": { 80 79 "node": ">=10.0.0" 81 80 }, 81 "exports": { 82 "import": "./wrapper.mjs", 83 "require": "./build/engine.io.js" 84 }, 82 85 "files": [ 83 "lib/" 86 "build/", 87 "wrapper.mjs" 84 88 ], 85 89 "homepage": "https://github.com/socketio/engine.io", 86 90 "license": "MIT", 87 "main": " lib/engine.io.js",91 "main": "./build/engine.io.js", 88 92 "name": "engine.io", 89 93 "repository": { … … 92 96 }, 93 97 "scripts": { 94 "format:check": "prettier --check 'lib/**/*.js' 'test/**/*.js'", 95 "format:fix": "prettier --write 'lib/**/*.js' 'test/**/*.js'", 96 "lint": "eslint lib/ test/ *.js", 97 "test": "npm run lint && npm run format:check && mocha && EIO_CLIENT=3 mocha && EIO_WS_ENGINE=eiows mocha" 98 "compile": "rimraf ./build && tsc", 99 "format:check": "prettier --check 'lib/**/*.ts' 'test/**/*.js'", 100 "format:fix": "prettier --write 'lib/**/*.ts' 'test/**/*.js'", 101 "prepack": "npm run compile", 102 "test": "npm run compile && npm run format:check && npm run test:default && npm run test:compat-v3 && npm run test:eiows && npm run test:uws", 103 "test:compat-v3": "EIO_CLIENT=3 mocha --exit", 104 "test:default": "mocha --bail --exit", 105 "test:eiows": "EIO_WS_ENGINE=eiows mocha --exit", 106 "test:uws": "EIO_WS_ENGINE=uws mocha --exit" 98 107 }, 99 "version": "4.1.1" 108 "type": "commonjs", 109 "types": "./build/engine.io.d.ts", 110 "version": "6.1.0" 100 111 }
Note:
See TracChangeset
for help on using the changeset viewer.