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

adding photos

Location:
trip-planner-front/node_modules/@npmcli
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • trip-planner-front/node_modules/@npmcli/git/node_modules/.bin/node-which

    rceaed42 r59329aa  
    77
    88if [ -x "$basedir/node" ]; then
    9   exec "$basedir/node"  "$basedir/../which/bin/node-which" "$@"
     9  "$basedir/node"  "$basedir/../which/bin/node-which" "$@"
     10  ret=$?
    1011else
    11   exec node  "$basedir/../which/bin/node-which" "$@"
     12  node  "$basedir/../which/bin/node-which" "$@"
     13  ret=$?
    1214fi
     15exit $ret
  • trip-planner-front/node_modules/@npmcli/git/node_modules/.bin/node-which.cmd

    rceaed42 r59329aa  
    11@ECHO off
    2 GOTO start
    3 :find_dp0
    4 SET dp0=%~dp0
    5 EXIT /b
    6 :start
    72SETLOCAL
    83CALL :find_dp0
     
    1510)
    1611
    17 endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%"  "%dp0%\..\which\bin\node-which" %*
     12"%_prog%"  "%dp0%\..\which\bin\node-which" %*
     13ENDLOCAL
     14EXIT /b %errorlevel%
     15:find_dp0
     16SET dp0=%~dp0
     17EXIT /b
  • trip-planner-front/node_modules/@npmcli/git/node_modules/.bin/node-which.ps1

    rceaed42 r59329aa  
    1010$ret=0
    1111if (Test-Path "$basedir/node$exe") {
    12   # Support pipeline input
    13   if ($MyInvocation.ExpectingInput) {
    14     $input | & "$basedir/node$exe"  "$basedir/../which/bin/node-which" $args
    15   } else {
    16     & "$basedir/node$exe"  "$basedir/../which/bin/node-which" $args
    17   }
     12  & "$basedir/node$exe"  "$basedir/../which/bin/node-which" $args
    1813  $ret=$LASTEXITCODE
    1914} else {
    20   # Support pipeline input
    21   if ($MyInvocation.ExpectingInput) {
    22     $input | & "node$exe"  "$basedir/../which/bin/node-which" $args
    23   } else {
    24     & "node$exe"  "$basedir/../which/bin/node-which" $args
    25   }
     15  & "node$exe"  "$basedir/../which/bin/node-which" $args
    2616  $ret=$LASTEXITCODE
    2717}
  • trip-planner-front/node_modules/@npmcli/git/node_modules/which/package.json

    rceaed42 r59329aa  
    11{
    2   "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me)",
    3   "name": "which",
    4   "description": "Like which(1) unix command. Find the first instance of an executable in the PATH.",
    5   "version": "2.0.2",
    6   "repository": {
    7     "type": "git",
    8     "url": "git://github.com/isaacs/node-which.git"
     2  "_args": [
     3    [
     4      "which@2.0.2",
     5      "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front"
     6    ]
     7  ],
     8  "_development": true,
     9  "_from": "which@2.0.2",
     10  "_id": "which@2.0.2",
     11  "_inBundle": false,
     12  "_integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
     13  "_location": "/@npmcli/git/which",
     14  "_phantomChildren": {},
     15  "_requested": {
     16    "type": "version",
     17    "registry": true,
     18    "raw": "which@2.0.2",
     19    "name": "which",
     20    "escapedName": "which",
     21    "rawSpec": "2.0.2",
     22    "saveSpec": null,
     23    "fetchSpec": "2.0.2"
    924  },
    10   "main": "which.js",
     25  "_requiredBy": [
     26    "/@npmcli/git"
     27  ],
     28  "_resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
     29  "_spec": "2.0.2",
     30  "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front",
     31  "author": {
     32    "name": "Isaac Z. Schlueter",
     33    "email": "i@izs.me",
     34    "url": "http://blog.izs.me"
     35  },
    1136  "bin": {
    12     "node-which": "./bin/node-which"
     37    "node-which": "bin/node-which"
    1338  },
    14   "license": "ISC",
     39  "bugs": {
     40    "url": "https://github.com/isaacs/node-which/issues"
     41  },
    1542  "dependencies": {
    1643    "isexe": "^2.0.0"
    1744  },
     45  "description": "Like which(1) unix command. Find the first instance of an executable in the PATH.",
    1846  "devDependencies": {
    1947    "mkdirp": "^0.5.0",
     
    2149    "tap": "^14.6.9"
    2250  },
    23   "scripts": {
    24     "test": "tap",
    25     "preversion": "npm test",
    26     "postversion": "npm publish",
    27     "prepublish": "npm run changelog",
    28     "prechangelog": "bash gen-changelog.sh",
    29     "changelog": "git add CHANGELOG.md",
    30     "postchangelog": "git commit -m 'update changelog - '${npm_package_version}",
    31     "postpublish": "git push origin --follow-tags"
     51  "engines": {
     52    "node": ">= 8"
    3253  },
    3354  "files": [
     
    3556    "bin/node-which"
    3657  ],
     58  "homepage": "https://github.com/isaacs/node-which#readme",
     59  "license": "ISC",
     60  "main": "which.js",
     61  "name": "which",
     62  "repository": {
     63    "type": "git",
     64    "url": "git://github.com/isaacs/node-which.git"
     65  },
     66  "scripts": {
     67    "changelog": "git add CHANGELOG.md",
     68    "postchangelog": "git commit -m 'update changelog - '${npm_package_version}",
     69    "postpublish": "git push origin --follow-tags",
     70    "postversion": "npm publish",
     71    "prechangelog": "bash gen-changelog.sh",
     72    "prepublish": "npm run changelog",
     73    "preversion": "npm test",
     74    "test": "tap"
     75  },
    3776  "tap": {
    3877    "check-coverage": true
    3978  },
    40   "engines": {
    41     "node": ">= 8"
    42   }
     79  "version": "2.0.2"
    4380}
  • trip-planner-front/node_modules/@npmcli/git/package.json

    rceaed42 r59329aa  
    11{
    2   "name": "@npmcli/git",
    3   "version": "2.1.0",
    4   "main": "lib/index.js",
    5   "files": [
    6     "lib/*.js"
     2  "_args": [
     3    [
     4      "@npmcli/git@2.1.0",
     5      "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front"
     6    ]
    77  ],
    8   "description": "a util for spawning git from npm CLI contexts",
    9   "repository": {
    10     "type": "git",
    11     "url": "git+https://github.com/npm/git"
     8  "_development": true,
     9  "_from": "@npmcli/git@2.1.0",
     10  "_id": "@npmcli/git@2.1.0",
     11  "_inBundle": false,
     12  "_integrity": "sha512-/hBFX/QG1b+N7PZBFs0bi+evgRZcK9nWBxQKZkGoXUT5hJSwl5c4d7y8/hm+NQZRPhQ67RzFaj5UM9YeyKoryw==",
     13  "_location": "/@npmcli/git",
     14  "_phantomChildren": {
     15    "isexe": "2.0.0"
    1216  },
    13   "author": "Isaac Z. Schlueter <i@izs.me> (https://izs.me)",
    14   "license": "ISC",
    15   "scripts": {
    16     "lint": "standard",
    17     "lint:fix": "standard --fix",
    18     "postversion": "npm publish",
    19     "prepublishOnly": "git push origin --follow-tags",
    20     "preversion": "npm test",
    21     "snap": "tap",
    22     "test": "tap",
    23     "posttest": "npm run lint"
     17  "_requested": {
     18    "type": "version",
     19    "registry": true,
     20    "raw": "@npmcli/git@2.1.0",
     21    "name": "@npmcli/git",
     22    "escapedName": "@npmcli%2fgit",
     23    "scope": "@npmcli",
     24    "rawSpec": "2.1.0",
     25    "saveSpec": null,
     26    "fetchSpec": "2.1.0"
    2427  },
    25   "tap": {
    26     "check-coverage": true,
    27     "coverage-map": "map.js"
     28  "_requiredBy": [
     29    "/pacote"
     30  ],
     31  "_resolved": "https://registry.npmjs.org/@npmcli/git/-/git-2.1.0.tgz",
     32  "_spec": "2.1.0",
     33  "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front",
     34  "author": {
     35    "name": "Isaac Z. Schlueter",
     36    "email": "i@izs.me",
     37    "url": "https://izs.me"
    2838  },
    29   "devDependencies": {
    30     "slash": "^3.0.0",
    31     "standard": "^16.0.3",
    32     "tap": "^15.0.6"
     39  "bugs": {
     40    "url": "https://github.com/npm/git/issues"
    3341  },
    3442  "dependencies": {
     
    4149    "semver": "^7.3.5",
    4250    "which": "^2.0.2"
    43   }
     51  },
     52  "description": "a util for spawning git from npm CLI contexts",
     53  "devDependencies": {
     54    "slash": "^3.0.0",
     55    "standard": "^16.0.3",
     56    "tap": "^15.0.6"
     57  },
     58  "files": [
     59    "lib/*.js"
     60  ],
     61  "homepage": "https://github.com/npm/git#readme",
     62  "license": "ISC",
     63  "main": "lib/index.js",
     64  "name": "@npmcli/git",
     65  "repository": {
     66    "type": "git",
     67    "url": "git+https://github.com/npm/git.git"
     68  },
     69  "scripts": {
     70    "lint": "standard",
     71    "lint:fix": "standard --fix",
     72    "posttest": "npm run lint",
     73    "postversion": "npm publish",
     74    "prepublishOnly": "git push origin --follow-tags",
     75    "preversion": "npm test",
     76    "snap": "tap",
     77    "test": "tap"
     78  },
     79  "tap": {
     80    "check-coverage": true,
     81    "coverage-map": "map.js"
     82  },
     83  "version": "2.1.0"
    4484}
  • trip-planner-front/node_modules/@npmcli/installed-package-contents/package.json

    rceaed42 r59329aa  
    11{
    2   "name": "@npmcli/installed-package-contents",
    3   "version": "1.0.7",
    4   "description": "Get the list of files installed in a package in node_modules, including bundled dependencies",
    5   "author": "Isaac Z. Schlueter <i@izs.me> (https://izs.me)",
    6   "main": "index.js",
     2  "_args": [
     3    [
     4      "@npmcli/installed-package-contents@1.0.7",
     5      "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front"
     6    ]
     7  ],
     8  "_development": true,
     9  "_from": "@npmcli/installed-package-contents@1.0.7",
     10  "_id": "@npmcli/installed-package-contents@1.0.7",
     11  "_inBundle": false,
     12  "_integrity": "sha512-9rufe0wnJusCQoLpV9ZPKIVP55itrM5BxOXs10DmdbRfgWtHy1LDyskbwRnBghuB0PrF7pNPOqREVtpz4HqzKw==",
     13  "_location": "/@npmcli/installed-package-contents",
     14  "_phantomChildren": {},
     15  "_requested": {
     16    "type": "version",
     17    "registry": true,
     18    "raw": "@npmcli/installed-package-contents@1.0.7",
     19    "name": "@npmcli/installed-package-contents",
     20    "escapedName": "@npmcli%2finstalled-package-contents",
     21    "scope": "@npmcli",
     22    "rawSpec": "1.0.7",
     23    "saveSpec": null,
     24    "fetchSpec": "1.0.7"
     25  },
     26  "_requiredBy": [
     27    "/pacote"
     28  ],
     29  "_resolved": "https://registry.npmjs.org/@npmcli/installed-package-contents/-/installed-package-contents-1.0.7.tgz",
     30  "_spec": "1.0.7",
     31  "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front",
     32  "author": {
     33    "name": "Isaac Z. Schlueter",
     34    "email": "i@izs.me",
     35    "url": "https://izs.me"
     36  },
    737  "bin": {
    838    "installed-package-contents": "index.js"
    939  },
     40  "bugs": {
     41    "url": "https://github.com/npm/installed-package-contents/issues"
     42  },
     43  "dependencies": {
     44    "npm-bundled": "^1.1.1",
     45    "npm-normalize-package-bin": "^1.0.1"
     46  },
     47  "description": "Get the list of files installed in a package in node_modules, including bundled dependencies",
     48  "devDependencies": {
     49    "require-inject": "^1.4.4",
     50    "tap": "^14.11.0"
     51  },
     52  "engines": {
     53    "node": ">= 10"
     54  },
     55  "files": [
     56    "index.js"
     57  ],
     58  "homepage": "https://github.com/npm/installed-package-contents#readme",
    1059  "license": "ISC",
     60  "main": "index.js",
     61  "name": "@npmcli/installed-package-contents",
     62  "repository": {
     63    "type": "git",
     64    "url": "git+https://github.com/npm/installed-package-contents.git"
     65  },
    1166  "scripts": {
    12     "test": "tap",
     67    "postpublish": "git push origin --follow-tags",
     68    "postversion": "npm publish",
     69    "preversion": "npm test",
    1370    "snap": "tap",
    14     "preversion": "npm test",
    15     "postversion": "npm publish",
    16     "postpublish": "git push origin --follow-tags"
     71    "test": "tap"
    1772  },
    1873  "tap": {
     
    2075    "color": true
    2176  },
    22   "devDependencies": {
    23     "require-inject": "^1.4.4",
    24     "tap": "^14.11.0"
    25   },
    26   "dependencies": {
    27     "npm-bundled": "^1.1.1",
    28     "npm-normalize-package-bin": "^1.0.1"
    29   },
    30   "repository": "git+https://github.com/npm/installed-package-contents",
    31   "files": [
    32     "index.js"
    33   ],
    34   "engines": {
    35     "node": ">= 10"
    36   }
     77  "version": "1.0.7"
    3778}
  • trip-planner-front/node_modules/@npmcli/move-file/package.json

    rceaed42 r59329aa  
    11{
    2   "name": "@npmcli/move-file",
    3   "version": "1.1.2",
    4   "files": [
    5     "index.js"
     2  "_args": [
     3    [
     4      "@npmcli/move-file@1.1.2",
     5      "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front"
     6    ]
    67  ],
    7   "description": "move a file (fork of move-file)",
     8  "_development": true,
     9  "_from": "@npmcli/move-file@1.1.2",
     10  "_id": "@npmcli/move-file@1.1.2",
     11  "_inBundle": false,
     12  "_integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==",
     13  "_location": "/@npmcli/move-file",
     14  "_phantomChildren": {},
     15  "_requested": {
     16    "type": "version",
     17    "registry": true,
     18    "raw": "@npmcli/move-file@1.1.2",
     19    "name": "@npmcli/move-file",
     20    "escapedName": "@npmcli%2fmove-file",
     21    "scope": "@npmcli",
     22    "rawSpec": "1.1.2",
     23    "saveSpec": null,
     24    "fetchSpec": "1.1.2"
     25  },
     26  "_requiredBy": [
     27    "/cacache"
     28  ],
     29  "_resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz",
     30  "_spec": "1.1.2",
     31  "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front",
     32  "bugs": {
     33    "url": "https://github.com/npm/move-file/issues"
     34  },
    835  "dependencies": {
    936    "mkdirp": "^1.0.4",
    1037    "rimraf": "^3.0.2"
    1138  },
     39  "description": "move a file (fork of move-file)",
    1240  "devDependencies": {
    1341    "require-inject": "^1.4.4",
    1442    "tap": "^14.10.7"
    1543  },
    16   "scripts": {
    17     "test": "tap",
    18     "snap": "tap",
    19     "preversion": "npm test",
    20     "postversion": "npm publish",
    21     "prepublishOnly": "git push origin --follow-tags"
     44  "engines": {
     45    "node": ">=10"
    2246  },
     47  "files": [
     48    "index.js"
     49  ],
     50  "homepage": "https://github.com/npm/move-file#readme",
     51  "license": "MIT",
     52  "name": "@npmcli/move-file",
    2353  "repository": {
    2454    "type": "git",
    25     "url": "git+https://github.com/npm/move-file"
     55    "url": "git+https://github.com/npm/move-file.git"
     56  },
     57  "scripts": {
     58    "postversion": "npm publish",
     59    "prepublishOnly": "git push origin --follow-tags",
     60    "preversion": "npm test",
     61    "snap": "tap",
     62    "test": "tap"
    2663  },
    2764  "tap": {
    2865    "check-coverage": true
    2966  },
    30   "license": "MIT",
    31   "engines": {
    32     "node": ">=10"
    33   }
     67  "version": "1.1.2"
    3468}
  • trip-planner-front/node_modules/@npmcli/node-gyp/package.json

    rceaed42 r59329aa  
    11{
    2   "name": "@npmcli/node-gyp",
    3   "version": "1.0.3",
     2  "_args": [
     3    [
     4      "@npmcli/node-gyp@1.0.3",
     5      "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front"
     6    ]
     7  ],
     8  "_development": true,
     9  "_from": "@npmcli/node-gyp@1.0.3",
     10  "_id": "@npmcli/node-gyp@1.0.3",
     11  "_inBundle": false,
     12  "_integrity": "sha512-fnkhw+fmX65kiLqk6E3BFLXNC26rUhK90zVwe2yncPliVT/Qos3xjhTLE59Df8KnPlcwIERXKVlU1bXoUQ+liA==",
     13  "_location": "/@npmcli/node-gyp",
     14  "_phantomChildren": {},
     15  "_requested": {
     16    "type": "version",
     17    "registry": true,
     18    "raw": "@npmcli/node-gyp@1.0.3",
     19    "name": "@npmcli/node-gyp",
     20    "escapedName": "@npmcli%2fnode-gyp",
     21    "scope": "@npmcli",
     22    "rawSpec": "1.0.3",
     23    "saveSpec": null,
     24    "fetchSpec": "1.0.3"
     25  },
     26  "_requiredBy": [
     27    "/@npmcli/run-script"
     28  ],
     29  "_resolved": "https://registry.npmjs.org/@npmcli/node-gyp/-/node-gyp-1.0.3.tgz",
     30  "_spec": "1.0.3",
     31  "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front",
     32  "author": {
     33    "name": "Brian Jenkins",
     34    "email": "bonkydog@bonkydog.com"
     35  },
     36  "bugs": {
     37    "url": "https://github.com/npm/node-gyp/issues"
     38  },
    439  "description": "Tools for dealing with node-gyp packages",
    5   "scripts": {
    6     "test": "tap",
    7     "preversion": "npm test",
    8     "postversion": "npm publish",
    9     "prepublishOnly": "git push origin --follow-tags"
     40  "devDependencies": {
     41    "require-inject": "^1.4.4",
     42    "tap": "^14.10.6",
     43    "tmp": "^0.2.1"
    1044  },
    11   "repository": {
    12     "type": "git",
    13     "url": "https://github.com/npm/node-gyp.git"
    14   },
     45  "files": [
     46    "lib/**/*.js"
     47  ],
     48  "homepage": "https://github.com/npm/node-gyp#readme",
    1549  "keywords": [
    1650    "npm",
     
    1852    "node-gyp"
    1953  ],
    20   "files": [
    21     "lib/**/*.js"
    22   ],
     54  "license": "ISC",
    2355  "main": "lib/index.js",
    24   "author": "Brian Jenkins <bonkydog@bonkydog.com>",
    25   "license": "ISC",
     56  "name": "@npmcli/node-gyp",
     57  "repository": {
     58    "type": "git",
     59    "url": "git+https://github.com/npm/node-gyp.git"
     60  },
     61  "scripts": {
     62    "postversion": "npm publish",
     63    "prepublishOnly": "git push origin --follow-tags",
     64    "preversion": "npm test",
     65    "test": "tap"
     66  },
    2667  "tap": {
    2768    "check-coverage": true,
    2869    "coverage-map": "map.js"
    2970  },
    30   "devDependencies": {
    31     "require-inject": "^1.4.4",
    32     "tap": "^14.10.6",
    33     "tmp": "^0.2.1"
    34   }
     71  "version": "1.0.3"
    3572}
  • trip-planner-front/node_modules/@npmcli/promise-spawn/package.json

    rceaed42 r59329aa  
    11{
    2   "name": "@npmcli/promise-spawn",
    3   "version": "1.3.2",
    4   "files": [
    5     "index.js"
     2  "_args": [
     3    [
     4      "@npmcli/promise-spawn@1.3.2",
     5      "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front"
     6    ]
    67  ],
     8  "_development": true,
     9  "_from": "@npmcli/promise-spawn@1.3.2",
     10  "_id": "@npmcli/promise-spawn@1.3.2",
     11  "_inBundle": false,
     12  "_integrity": "sha512-QyAGYo/Fbj4MXeGdJcFzZ+FkDkomfRBrPM+9QYJSg+PxgAUL+LU3FneQk37rKR2/zjqkCV1BLHccX98wRXG3Sg==",
     13  "_location": "/@npmcli/promise-spawn",
     14  "_phantomChildren": {},
     15  "_requested": {
     16    "type": "version",
     17    "registry": true,
     18    "raw": "@npmcli/promise-spawn@1.3.2",
     19    "name": "@npmcli/promise-spawn",
     20    "escapedName": "@npmcli%2fpromise-spawn",
     21    "scope": "@npmcli",
     22    "rawSpec": "1.3.2",
     23    "saveSpec": null,
     24    "fetchSpec": "1.3.2"
     25  },
     26  "_requiredBy": [
     27    "/@npmcli/git",
     28    "/@npmcli/run-script",
     29    "/pacote"
     30  ],
     31  "_resolved": "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-1.3.2.tgz",
     32  "_spec": "1.3.2",
     33  "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front",
     34  "author": {
     35    "name": "Isaac Z. Schlueter",
     36    "email": "i@izs.me",
     37    "url": "https://izs.me"
     38  },
     39  "bugs": {
     40    "url": "https://github.com/npm/promise-spawn/issues"
     41  },
     42  "dependencies": {
     43    "infer-owner": "^1.0.4"
     44  },
    745  "description": "spawn processes the way the npm cli likes to do",
    8   "repository": {
    9     "type": "git",
    10     "url": "git+https://github.com/npm/promise-spawn"
    11   },
    12   "author": "Isaac Z. Schlueter <i@izs.me> (https://izs.me)",
    13   "license": "ISC",
    14   "scripts": {
    15     "test": "tap",
    16     "snap": "tap",
    17     "preversion": "npm test",
    18     "postversion": "npm publish",
    19     "prepublishOnly": "git push origin --follow-tags"
    20   },
    21   "tap": {
    22     "check-coverage": true
    23   },
    2446  "devDependencies": {
    2547    "minipass": "^3.1.1",
     
    2749    "tap": "^14.10.6"
    2850  },
    29   "dependencies": {
    30     "infer-owner": "^1.0.4"
    31   }
     51  "files": [
     52    "index.js"
     53  ],
     54  "homepage": "https://github.com/npm/promise-spawn#readme",
     55  "license": "ISC",
     56  "name": "@npmcli/promise-spawn",
     57  "repository": {
     58    "type": "git",
     59    "url": "git+https://github.com/npm/promise-spawn.git"
     60  },
     61  "scripts": {
     62    "postversion": "npm publish",
     63    "prepublishOnly": "git push origin --follow-tags",
     64    "preversion": "npm test",
     65    "snap": "tap",
     66    "test": "tap"
     67  },
     68  "tap": {
     69    "check-coverage": true
     70  },
     71  "version": "1.3.2"
    3272}
  • trip-planner-front/node_modules/@npmcli/run-script/package.json

    rceaed42 r59329aa  
    11{
    2   "name": "@npmcli/run-script",
    3   "version": "1.8.6",
     2  "_args": [
     3    [
     4      "@npmcli/run-script@1.8.6",
     5      "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front"
     6    ]
     7  ],
     8  "_development": true,
     9  "_from": "@npmcli/run-script@1.8.6",
     10  "_id": "@npmcli/run-script@1.8.6",
     11  "_inBundle": false,
     12  "_integrity": "sha512-e42bVZnC6VluBZBAFEr3YrdqSspG3bgilyg4nSLBJ7TRGNCzxHa92XAHxQBLYg0BmgwO4b2mf3h/l5EkEWRn3g==",
     13  "_location": "/@npmcli/run-script",
     14  "_phantomChildren": {},
     15  "_requested": {
     16    "type": "version",
     17    "registry": true,
     18    "raw": "@npmcli/run-script@1.8.6",
     19    "name": "@npmcli/run-script",
     20    "escapedName": "@npmcli%2frun-script",
     21    "scope": "@npmcli",
     22    "rawSpec": "1.8.6",
     23    "saveSpec": null,
     24    "fetchSpec": "1.8.6"
     25  },
     26  "_requiredBy": [
     27    "/pacote"
     28  ],
     29  "_resolved": "https://registry.npmjs.org/@npmcli/run-script/-/run-script-1.8.6.tgz",
     30  "_spec": "1.8.6",
     31  "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front",
     32  "author": {
     33    "name": "Isaac Z. Schlueter",
     34    "email": "i@izs.me",
     35    "url": "https://izs.me"
     36  },
     37  "bugs": {
     38    "url": "https://github.com/npm/run-script/issues"
     39  },
     40  "dependencies": {
     41    "@npmcli/node-gyp": "^1.0.2",
     42    "@npmcli/promise-spawn": "^1.3.2",
     43    "node-gyp": "^7.1.0",
     44    "read-package-json-fast": "^2.0.1"
     45  },
    446  "description": "Run a lifecycle script for a package (descendant of npm-lifecycle)",
    5   "author": "Isaac Z. Schlueter <i@izs.me> (https://izs.me)",
    6   "license": "ISC",
    7   "scripts": {
    8     "test": "tap",
    9     "preversion": "npm test",
    10     "postversion": "npm publish",
    11     "prepublishOnly": "git push origin --follow-tags",
    12     "eslint": "eslint",
    13     "lint": "npm run eslint -- \"lib/**/*.js\"",
    14     "lintfix": "npm run lint -- --fix"
    15   },
    16   "tap": {
    17     "check-coverage": true,
    18     "coverage-map": "map.js"
    19   },
    2047  "devDependencies": {
    2148    "eslint": "^7.19.0",
     
    2855    "tap": "^15.0.4"
    2956  },
    30   "dependencies": {
    31     "@npmcli/node-gyp": "^1.0.2",
    32     "@npmcli/promise-spawn": "^1.3.2",
    33     "node-gyp": "^7.1.0",
    34     "read-package-json-fast": "^2.0.1"
    35   },
    3657  "files": [
    3758    "lib/**/*.js",
    3859    "lib/node-gyp-bin"
    3960  ],
     61  "homepage": "https://github.com/npm/run-script#readme",
     62  "license": "ISC",
    4063  "main": "lib/run-script.js",
     64  "name": "@npmcli/run-script",
    4165  "repository": {
    4266    "type": "git",
    4367    "url": "git+https://github.com/npm/run-script.git"
    44   }
     68  },
     69  "scripts": {
     70    "eslint": "eslint",
     71    "lint": "npm run eslint -- \"lib/**/*.js\"",
     72    "lintfix": "npm run lint -- --fix",
     73    "postversion": "npm publish",
     74    "prepublishOnly": "git push origin --follow-tags",
     75    "preversion": "npm test",
     76    "test": "tap"
     77  },
     78  "tap": {
     79    "check-coverage": true,
     80    "coverage-map": "map.js"
     81  },
     82  "version": "1.8.6"
    4583}
Note: See TracChangeset for help on using the changeset viewer.