Ignore:
Timestamp:
11/23/21 14:58:44 (3 years ago)
Author:
Ema <ema_spirova@…>
Branches:
master
Children:
e29cc2e
Parents:
ceaed42
Message:

adding photos

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trip-planner-front/node_modules/fast-glob/package.json

    rceaed42 r59329aa  
    11{
    2   "name": "fast-glob",
    3   "version": "3.2.7",
    4   "description": "It's a very fast and efficient glob library for Node.js",
    5   "license": "MIT",
    6   "repository": "mrmlnc/fast-glob",
     2  "_args": [
     3    [
     4      "fast-glob@3.2.7",
     5      "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front"
     6    ]
     7  ],
     8  "_development": true,
     9  "_from": "fast-glob@3.2.7",
     10  "_id": "fast-glob@3.2.7",
     11  "_inBundle": false,
     12  "_integrity": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==",
     13  "_location": "/fast-glob",
     14  "_phantomChildren": {},
     15  "_requested": {
     16    "type": "version",
     17    "registry": true,
     18    "raw": "fast-glob@3.2.7",
     19    "name": "fast-glob",
     20    "escapedName": "fast-glob",
     21    "rawSpec": "3.2.7",
     22    "saveSpec": null,
     23    "fetchSpec": "3.2.7"
     24  },
     25  "_requiredBy": [
     26    "/copy-webpack-plugin",
     27    "/globby",
     28    "/stylus-loader"
     29  ],
     30  "_resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz",
     31  "_spec": "3.2.7",
     32  "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front",
    733  "author": {
    834    "name": "Denis Malinochkin",
    935    "url": "https://mrmlnc.com"
    1036  },
    11   "engines": {
    12     "node": ">=8"
     37  "bugs": {
     38    "url": "https://github.com/mrmlnc/fast-glob/issues"
    1339  },
    14   "main": "out/index.js",
    15   "typings": "out/index.d.ts",
    16   "files": [
    17     "out",
    18     "!out/{benchmark,tests}",
    19     "!out/**/*.map",
    20     "!out/**/*.spec.*"
    21   ],
    22   "keywords": [
    23     "glob",
    24     "patterns",
    25     "fast",
    26     "implementation"
    27   ],
     40  "dependencies": {
     41    "@nodelib/fs.stat": "^2.0.2",
     42    "@nodelib/fs.walk": "^1.2.3",
     43    "glob-parent": "^5.1.2",
     44    "merge2": "^1.3.0",
     45    "micromatch": "^4.0.4"
     46  },
     47  "description": "It's a very fast and efficient glob library for Node.js",
    2848  "devDependencies": {
    2949    "@nodelib/fs.macchiato": "^1.0.1",
     
    5777    "typescript": "^3.6.3"
    5878  },
    59   "dependencies": {
    60     "@nodelib/fs.stat": "^2.0.2",
    61     "@nodelib/fs.walk": "^1.2.3",
    62     "glob-parent": "^5.1.2",
    63     "merge2": "^1.3.0",
    64     "micromatch": "^4.0.4"
     79  "engines": {
     80    "node": ">=8"
     81  },
     82  "files": [
     83    "out",
     84    "!out/{benchmark,tests}",
     85    "!out/**/*.map",
     86    "!out/**/*.spec.*"
     87  ],
     88  "homepage": "https://github.com/mrmlnc/fast-glob#readme",
     89  "keywords": [
     90    "glob",
     91    "patterns",
     92    "fast",
     93    "implementation"
     94  ],
     95  "license": "MIT",
     96  "main": "out/index.js",
     97  "name": "fast-glob",
     98  "repository": {
     99    "type": "git",
     100    "url": "git+https://github.com/mrmlnc/fast-glob.git"
    65101  },
    66102  "scripts": {
     103    "bench": "npm run bench-async && npm run bench-stream && npm run bench-sync",
     104    "bench-async": "npm run bench-async-flatten && npm run bench-async-deep && npm run bench-async-partial-flatten && npm run bench-async-partial-deep",
     105    "bench-async-deep": "node ./out/benchmark --mode async --pattern \"**\"",
     106    "bench-async-flatten": "node ./out/benchmark --mode async --pattern \"*\"",
     107    "bench-async-partial-deep": "node ./out/benchmark --mode async --pattern \"{fixtures,out}/**\"",
     108    "bench-async-partial-flatten": "node ./out/benchmark --mode async --pattern \"{fixtures,out}/{first,second}/*\"",
     109    "bench-stream": "npm run bench-stream-flatten && npm run bench-stream-deep && npm run bench-stream-partial-flatten && npm run bench-stream-partial-deep",
     110    "bench-stream-deep": "node ./out/benchmark --mode stream --pattern \"**\"",
     111    "bench-stream-flatten": "node ./out/benchmark --mode stream --pattern \"*\"",
     112    "bench-stream-partial-deep": "node ./out/benchmark --mode stream --pattern \"{fixtures,out}/**\"",
     113    "bench-stream-partial-flatten": "node ./out/benchmark --mode stream --pattern \"{fixtures,out}/{first,second}/*\"",
     114    "bench-sync": "npm run bench-sync-flatten && npm run bench-sync-deep && npm run bench-sync-partial-flatten && npm run bench-sync-partial-deep",
     115    "bench-sync-deep": "node ./out/benchmark --mode sync --pattern \"**\"",
     116    "bench-sync-flatten": "node ./out/benchmark --mode sync --pattern \"*\"",
     117    "bench-sync-partial-deep": "node ./out/benchmark --mode sync --pattern \"{fixtures,out}/**\"",
     118    "bench-sync-partial-flatten": "node ./out/benchmark --mode sync --pattern \"{fixtures,out}/{first,second}/*\"",
     119    "build": "npm run clean && npm run compile && npm run lint && npm test",
    67120    "clean": "rimraf out",
     121    "compile": "tsc",
    68122    "lint": "eslint \"src/**/*.ts\" --cache",
    69     "compile": "tsc",
    70     "test": "mocha \"out/**/*.spec.js\" -s 0",
    71123    "smoke": "mocha \"out/**/*.smoke.js\" -s 0",
    72     "smoke:sync": "mocha \"out/**/*.smoke.js\" -s 0 --grep \"\\(sync\\)\"",
    73124    "smoke:async": "mocha \"out/**/*.smoke.js\" -s 0 --grep \"\\(async\\)\"",
    74125    "smoke:stream": "mocha \"out/**/*.smoke.js\" -s 0 --grep \"\\(stream\\)\"",
    75     "build": "npm run clean && npm run compile && npm run lint && npm test",
    76     "watch": "npm run clean && npm run compile -- --sourceMap --watch",
    77     "bench": "npm run bench-async && npm run bench-stream && npm run bench-sync",
    78     "bench-async": "npm run bench-async-flatten && npm run bench-async-deep && npm run bench-async-partial-flatten && npm run bench-async-partial-deep",
    79     "bench-stream": "npm run bench-stream-flatten && npm run bench-stream-deep && npm run bench-stream-partial-flatten && npm run bench-stream-partial-deep",
    80     "bench-sync": "npm run bench-sync-flatten && npm run bench-sync-deep && npm run bench-sync-partial-flatten && npm run bench-sync-partial-deep",
    81     "bench-async-flatten": "node ./out/benchmark --mode async --pattern \"*\"",
    82     "bench-async-deep": "node ./out/benchmark --mode async --pattern \"**\"",
    83     "bench-async-partial-flatten": "node ./out/benchmark --mode async --pattern \"{fixtures,out}/{first,second}/*\"",
    84     "bench-async-partial-deep": "node ./out/benchmark --mode async --pattern \"{fixtures,out}/**\"",
    85     "bench-stream-flatten": "node ./out/benchmark --mode stream --pattern \"*\"",
    86     "bench-stream-deep": "node ./out/benchmark --mode stream --pattern \"**\"",
    87     "bench-stream-partial-flatten": "node ./out/benchmark --mode stream --pattern \"{fixtures,out}/{first,second}/*\"",
    88     "bench-stream-partial-deep": "node ./out/benchmark --mode stream --pattern \"{fixtures,out}/**\"",
    89     "bench-sync-flatten": "node ./out/benchmark --mode sync --pattern \"*\"",
    90     "bench-sync-deep": "node ./out/benchmark --mode sync --pattern \"**\"",
    91     "bench-sync-partial-flatten": "node ./out/benchmark --mode sync --pattern \"{fixtures,out}/{first,second}/*\"",
    92     "bench-sync-partial-deep": "node ./out/benchmark --mode sync --pattern \"{fixtures,out}/**\""
    93   }
     126    "smoke:sync": "mocha \"out/**/*.smoke.js\" -s 0 --grep \"\\(sync\\)\"",
     127    "test": "mocha \"out/**/*.spec.js\" -s 0",
     128    "watch": "npm run clean && npm run compile -- --sourceMap --watch"
     129  },
     130  "typings": "out/index.d.ts",
     131  "version": "3.2.7"
    94132}
Note: See TracChangeset for help on using the changeset viewer.