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/uuid/package.json

    rceaed42 r59329aa  
    11{
    2   "name": "uuid",
    3   "version": "8.3.2",
    4   "description": "RFC4122 (v1, v4, and v5) UUIDs",
    5   "commitlint": {
    6     "extends": [
    7       "@commitlint/config-conventional"
     2  "_args": [
     3    [
     4      "uuid@8.3.2",
     5      "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front"
    86    ]
     7  ],
     8  "_development": true,
     9  "_from": "uuid@8.3.2",
     10  "_id": "uuid@8.3.2",
     11  "_inBundle": false,
     12  "_integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==",
     13  "_location": "/uuid",
     14  "_phantomChildren": {},
     15  "_requested": {
     16    "type": "version",
     17    "registry": true,
     18    "raw": "uuid@8.3.2",
     19    "name": "uuid",
     20    "escapedName": "uuid",
     21    "rawSpec": "8.3.2",
     22    "saveSpec": null,
     23    "fetchSpec": "8.3.2"
    924  },
    10   "keywords": [
    11     "uuid",
    12     "guid",
    13     "rfc4122"
     25  "_requiredBy": [
     26    "/@angular/cli"
    1427  ],
    15   "license": "MIT",
     28  "_resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz",
     29  "_spec": "8.3.2",
     30  "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front",
    1631  "bin": {
    17     "uuid": "./dist/bin/uuid"
     32    "uuid": "dist/bin/uuid"
    1833  },
    19   "sideEffects": false,
    20   "main": "./dist/index.js",
    21   "exports": {
    22     ".": {
    23       "node": {
    24         "module": "./dist/esm-node/index.js",
    25         "require": "./dist/index.js",
    26         "import": "./wrapper.mjs"
    27       },
    28       "default": "./dist/esm-browser/index.js"
    29     },
    30     "./package.json": "./package.json"
    31   },
    32   "module": "./dist/esm-node/index.js",
    3334  "browser": {
    3435    "./dist/md5.js": "./dist/md5-browser.js",
     
    3738    "./dist/esm-node/index.js": "./dist/esm-browser/index.js"
    3839  },
    39   "files": [
    40     "CHANGELOG.md",
    41     "CONTRIBUTING.md",
    42     "LICENSE.md",
    43     "README.md",
    44     "dist",
    45     "wrapper.mjs"
    46   ],
     40  "bugs": {
     41    "url": "https://github.com/uuidjs/uuid/issues"
     42  },
     43  "commitlint": {
     44    "extends": [
     45      "@commitlint/config-conventional"
     46    ]
     47  },
     48  "description": "RFC4122 (v1, v4, and v5) UUIDs",
    4749  "devDependencies": {
    4850    "@babel/cli": "7.11.6",
     
    7476    "standard-version": "9.0.0"
    7577  },
     78  "exports": {
     79    ".": {
     80      "node": {
     81        "module": "./dist/esm-node/index.js",
     82        "require": "./dist/index.js",
     83        "import": "./wrapper.mjs"
     84      },
     85      "default": "./dist/esm-browser/index.js"
     86    },
     87    "./package.json": "./package.json"
     88  },
     89  "files": [
     90    "CHANGELOG.md",
     91    "CONTRIBUTING.md",
     92    "LICENSE.md",
     93    "README.md",
     94    "dist",
     95    "wrapper.mjs"
     96  ],
     97  "homepage": "https://github.com/uuidjs/uuid#readme",
     98  "husky": {
     99    "hooks": {
     100      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
     101      "pre-commit": "lint-staged"
     102    }
     103  },
     104  "keywords": [
     105    "uuid",
     106    "guid",
     107    "rfc4122"
     108  ],
     109  "license": "MIT",
     110  "lint-staged": {
     111    "*.{js,jsx,json,md}": [
     112      "prettier --write"
     113    ],
     114    "*.{js,jsx}": [
     115      "eslint --fix"
     116    ]
     117  },
     118  "main": "./dist/index.js",
     119  "module": "./dist/esm-node/index.js",
     120  "name": "uuid",
    76121  "optionalDevDependencies": {
    77122    "@wdio/browserstack-service": "6.4.0",
     
    83128    "@wdio/sync": "6.4.0"
    84129  },
     130  "repository": {
     131    "type": "git",
     132    "url": "git+https://github.com/uuidjs/uuid.git"
     133  },
    85134  "scripts": {
     135    "build": "./scripts/build.sh",
     136    "bundlewatch": "npm run pretest:browser && bundlewatch --config bundlewatch.config.json",
     137    "docs": "( node --version | grep -q 'v12' ) && ( npm run build && runmd --output=README.md README_js.md )",
     138    "docs:diff": "npm run docs && git diff --quiet README.md",
     139    "eslint:check": "eslint src/ test/ examples/ *.js",
     140    "eslint:fix": "eslint --fix src/ test/ examples/ *.js",
     141    "examples:browser:rollup:build": "cd examples/browser-rollup && npm install && npm run build",
    86142    "examples:browser:webpack:build": "cd examples/browser-webpack && npm install && npm run build",
    87     "examples:browser:rollup:build": "cd examples/browser-rollup && npm install && npm run build",
    88143    "examples:node:commonjs:test": "cd examples/node-commonjs && npm install && npm test",
    89144    "examples:node:esmodules:test": "cd examples/node-esmodules && npm install && npm test",
    90145    "lint": "npm run eslint:check && npm run prettier:check",
    91     "eslint:check": "eslint src/ test/ examples/ *.js",
    92     "eslint:fix": "eslint --fix src/ test/ examples/ *.js",
     146    "md": "runmd --watch --output=README.md README_js.md",
     147    "prepack": "npm run build",
    93148    "pretest": "[ -n $CI ] || npm run build",
    94     "test": "BABEL_ENV=commonjs node --throw-deprecation node_modules/.bin/jest test/unit/",
     149    "pretest:benchmark": "npm run build",
    95150    "pretest:browser": "optional-dev-dependency && npm run build && npm-run-all --parallel examples:browser:**",
    96     "test:browser": "wdio run ./wdio.conf.js",
    97151    "pretest:node": "npm run build",
    98     "test:node": "npm-run-all --parallel examples:node:**",
    99     "test:pack": "./scripts/testpack.sh",
    100     "pretest:benchmark": "npm run build",
    101     "test:benchmark": "cd examples/benchmark && npm install && npm test",
    102152    "prettier:check": "prettier --ignore-path .prettierignore --check '**/*.{js,jsx,json,md}'",
    103153    "prettier:fix": "prettier --ignore-path .prettierignore --write '**/*.{js,jsx,json,md}'",
    104     "bundlewatch": "npm run pretest:browser && bundlewatch --config bundlewatch.config.json",
    105     "md": "runmd --watch --output=README.md README_js.md",
    106     "docs": "( node --version | grep -q 'v12' ) && ( npm run build && runmd --output=README.md README_js.md )",
    107     "docs:diff": "npm run docs && git diff --quiet README.md",
    108     "build": "./scripts/build.sh",
    109     "prepack": "npm run build",
    110     "release": "standard-version --no-verify"
     154    "release": "standard-version --no-verify",
     155    "test": "BABEL_ENV=commonjs node --throw-deprecation node_modules/.bin/jest test/unit/",
     156    "test:benchmark": "cd examples/benchmark && npm install && npm test",
     157    "test:browser": "wdio run ./wdio.conf.js",
     158    "test:node": "npm-run-all --parallel examples:node:**",
     159    "test:pack": "./scripts/testpack.sh"
    111160  },
    112   "repository": {
    113     "type": "git",
    114     "url": "https://github.com/uuidjs/uuid.git"
    115   },
    116   "husky": {
    117     "hooks": {
    118       "commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
    119       "pre-commit": "lint-staged"
    120     }
    121   },
    122   "lint-staged": {
    123     "*.{js,jsx,json,md}": [
    124       "prettier --write"
    125     ],
    126     "*.{js,jsx}": [
    127       "eslint --fix"
    128     ]
    129   },
     161  "sideEffects": false,
    130162  "standard-version": {
    131163    "scripts": {
    132164      "postchangelog": "prettier --write CHANGELOG.md"
    133165    }
    134   }
     166  },
     167  "version": "8.3.2"
    135168}
Note: See TracChangeset for help on using the changeset viewer.