Ignore:
Timestamp:
11/25/21 22:08:24 (3 years ago)
Author:
Ema <ema_spirova@…>
Branches:
master
Children:
8d391a1
Parents:
59329aa
Message:

primeNG components

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trip-planner-front/node_modules/engine.io/package.json

    r59329aa re29cc2e  
    11{
    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",
    114  "_inBundle": false,
    12   "_integrity": "sha512-t2E9wLlssQjGw0nluF6aYyfX8LwYU8Jj0xct+pAhfWfv/YrBn6TSNtEYsgxHIfaMqfrLx07czcMg9bMN6di+3w==",
     5  "_integrity": "sha512-ErhZOVu2xweCjEfYcTdkCnEYUiZgkAcBBAhW4jbIvNG8SLU3orAqoJCiytZjYF7eTpVmmCrLDjLIEaPlUAs1uw==",
    136  "_location": "/engine.io",
    147  "_phantomChildren": {},
    158  "_requested": {
    16     "type": "version",
     9    "type": "range",
    1710    "registry": true,
    18     "raw": "engine.io@4.1.1",
     11    "raw": "engine.io@~6.1.0",
    1912    "name": "engine.io",
    2013    "escapedName": "engine.io",
    21     "rawSpec": "4.1.1",
     14    "rawSpec": "~6.1.0",
    2215    "saveSpec": null,
    23     "fetchSpec": "4.1.1"
     16    "fetchSpec": "~6.1.0"
    2417  },
    2518  "_requiredBy": [
    2619    "/socket.io"
    2720  ],
    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",
    3125  "author": {
    3226    "name": "Guillermo Rauch",
     
    3630    "url": "https://github.com/socketio/engine.io/issues"
    3731  },
     32  "bundleDependencies": false,
    3833  "contributors": [
    3934    {
     
    5550  ],
    5651  "dependencies": {
     52    "@types/cookie": "^0.4.1",
     53    "@types/cors": "^2.8.12",
     54    "@types/node": ">=10.0.0",
    5755    "accepts": "~1.3.4",
    5856    "base64id": "2.0.0",
     
    6058    "cors": "~2.8.5",
    6159    "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"
    6462  },
     63  "deprecated": false,
    6564  "description": "The realtime engine behind Socket.IO. Provides the foundation of a bidirectional connection between client and server",
    6665  "devDependencies": {
    6766    "babel-eslint": "^8.0.2",
    6867    "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",
    7370    "expect.js": "^0.3.1",
    74     "mocha": "^4.0.1",
     71    "mocha": "^9.1.3",
    7572    "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"
    7877  },
    7978  "engines": {
    8079    "node": ">=10.0.0"
    8180  },
     81  "exports": {
     82    "import": "./wrapper.mjs",
     83    "require": "./build/engine.io.js"
     84  },
    8285  "files": [
    83     "lib/"
     86    "build/",
     87    "wrapper.mjs"
    8488  ],
    8589  "homepage": "https://github.com/socketio/engine.io",
    8690  "license": "MIT",
    87   "main": "lib/engine.io.js",
     91  "main": "./build/engine.io.js",
    8892  "name": "engine.io",
    8993  "repository": {
     
    9296  },
    9397  "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"
    98107  },
    99   "version": "4.1.1"
     108  "type": "commonjs",
     109  "types": "./build/engine.io.d.ts",
     110  "version": "6.1.0"
    100111}
Note: See TracChangeset for help on using the changeset viewer.