Changeset 59329aa for trip-planner-front/node_modules/babel-loader
- Timestamp:
- 11/23/21 14:58:44 (3 years ago)
- Branches:
- master
- Children:
- e29cc2e
- Parents:
- ceaed42
- Location:
- trip-planner-front/node_modules/babel-loader
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/node_modules/babel-loader/node_modules/.bin/json5
rceaed42 r59329aa 7 7 8 8 if [ -x "$basedir/node" ]; then 9 exec "$basedir/node" "$basedir/../json5/lib/cli.js" "$@" 9 "$basedir/node" "$basedir/../json5/lib/cli.js" "$@" 10 ret=$? 10 11 else 11 exec node "$basedir/../json5/lib/cli.js" "$@" 12 node "$basedir/../json5/lib/cli.js" "$@" 13 ret=$? 12 14 fi 15 exit $ret -
trip-planner-front/node_modules/babel-loader/node_modules/.bin/json5.cmd
rceaed42 r59329aa 1 1 @ECHO off 2 GOTO start3 :find_dp04 SET dp0=%~dp05 EXIT /b6 :start7 2 SETLOCAL 8 3 CALL :find_dp0 … … 15 10 ) 16 11 17 endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\json5\lib\cli.js" %* 12 "%_prog%" "%dp0%\..\json5\lib\cli.js" %* 13 ENDLOCAL 14 EXIT /b %errorlevel% 15 :find_dp0 16 SET dp0=%~dp0 17 EXIT /b -
trip-planner-front/node_modules/babel-loader/node_modules/.bin/json5.ps1
rceaed42 r59329aa 10 10 $ret=0 11 11 if (Test-Path "$basedir/node$exe") { 12 # Support pipeline input 13 if ($MyInvocation.ExpectingInput) { 14 $input | & "$basedir/node$exe" "$basedir/../json5/lib/cli.js" $args 15 } else { 16 & "$basedir/node$exe" "$basedir/../json5/lib/cli.js" $args 17 } 12 & "$basedir/node$exe" "$basedir/../json5/lib/cli.js" $args 18 13 $ret=$LASTEXITCODE 19 14 } else { 20 # Support pipeline input 21 if ($MyInvocation.ExpectingInput) { 22 $input | & "node$exe" "$basedir/../json5/lib/cli.js" $args 23 } else { 24 & "node$exe" "$basedir/../json5/lib/cli.js" $args 25 } 15 & "node$exe" "$basedir/../json5/lib/cli.js" $args 26 16 $ret=$LASTEXITCODE 27 17 } -
trip-planner-front/node_modules/babel-loader/node_modules/json5/package.json
rceaed42 r59329aa 1 1 { 2 "name": "json5", 3 "version": "1.0.1", 4 "description": "JSON for humans.", 5 "main": "lib/index.js", 6 "bin": "lib/cli.js", 2 "_args": [ 3 [ 4 "json5@1.0.1", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "json5@1.0.1", 10 "_id": "json5@1.0.1", 11 "_inBundle": false, 12 "_integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", 13 "_location": "/babel-loader/json5", 14 "_phantomChildren": {}, 15 "_requested": { 16 "type": "version", 17 "registry": true, 18 "raw": "json5@1.0.1", 19 "name": "json5", 20 "escapedName": "json5", 21 "rawSpec": "1.0.1", 22 "saveSpec": null, 23 "fetchSpec": "1.0.1" 24 }, 25 "_requiredBy": [ 26 "/babel-loader/loader-utils" 27 ], 28 "_resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", 29 "_spec": "1.0.1", 30 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 31 "author": { 32 "name": "Aseem Kishore", 33 "email": "aseem.kishore@gmail.com" 34 }, 35 "bin": { 36 "json5": "lib/cli.js" 37 }, 7 38 "browser": "dist/index.js", 8 "files": [9 "lib/",10 "dist/"11 ],12 "scripts": {13 "build": "babel-node build/build.js && babel src -d lib && rollup -c",14 "coverage": "nyc report --reporter=text-lcov | coveralls",15 "lint": "eslint --fix build src",16 "prepublishOnly": "npm run lint && npm test && npm run production",17 "pretest": "cross-env NODE_ENV=test npm run build",18 "preversion": "npm run lint && npm test && npm run production",19 "production": "cross-env NODE_ENV=production npm run build",20 "test": "nyc --reporter=html --reporter=text mocha"21 },22 "repository": {23 "type": "git",24 "url": "git+https://github.com/json5/json5.git"25 },26 "keywords": [27 "json",28 "json5",29 "es5",30 "es2015",31 "ecmascript"32 ],33 "author": "Aseem Kishore <aseem.kishore@gmail.com>",34 "contributors": [35 "Max Nanasy <max.nanasy@gmail.com>",36 "Andrew Eisenberg <andrew@eisenberg.as>",37 "Jordan Tucker <jordanbtucker@gmail.com>"38 ],39 "license": "MIT",40 39 "bugs": { 41 40 "url": "https://github.com/json5/json5/issues" 42 41 }, 43 "homepage": "http://json5.org/", 42 "contributors": [ 43 { 44 "name": "Max Nanasy", 45 "email": "max.nanasy@gmail.com" 46 }, 47 { 48 "name": "Andrew Eisenberg", 49 "email": "andrew@eisenberg.as" 50 }, 51 { 52 "name": "Jordan Tucker", 53 "email": "jordanbtucker@gmail.com" 54 } 55 ], 44 56 "dependencies": { 45 57 "minimist": "^1.2.0" 46 58 }, 59 "description": "JSON for humans.", 47 60 "devDependencies": { 48 61 "babel-cli": "^6.26.0", … … 73 86 "sinon": "^4.4.2", 74 87 "unicode-9.0.0": "^0.7.5" 75 } 88 }, 89 "files": [ 90 "lib/", 91 "dist/" 92 ], 93 "homepage": "http://json5.org/", 94 "keywords": [ 95 "json", 96 "json5", 97 "es5", 98 "es2015", 99 "ecmascript" 100 ], 101 "license": "MIT", 102 "main": "lib/index.js", 103 "name": "json5", 104 "repository": { 105 "type": "git", 106 "url": "git+https://github.com/json5/json5.git" 107 }, 108 "scripts": { 109 "build": "babel-node build/build.js && babel src -d lib && rollup -c", 110 "coverage": "nyc report --reporter=text-lcov | coveralls", 111 "lint": "eslint --fix build src", 112 "prepublishOnly": "npm run lint && npm test && npm run production", 113 "pretest": "cross-env NODE_ENV=test npm run build", 114 "preversion": "npm run lint && npm test && npm run production", 115 "production": "cross-env NODE_ENV=production npm run build", 116 "test": "nyc --reporter=html --reporter=text mocha" 117 }, 118 "version": "1.0.1" 76 119 } -
trip-planner-front/node_modules/babel-loader/node_modules/loader-utils/package.json
rceaed42 r59329aa 1 1 { 2 "name": "loader-utils", 3 "version": "1.4.0", 4 "author": "Tobias Koppers @sokra", 5 "description": "utils for webpack loaders", 2 "_args": [ 3 [ 4 "loader-utils@1.4.0", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "loader-utils@1.4.0", 10 "_id": "loader-utils@1.4.0", 11 "_inBundle": false, 12 "_integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", 13 "_location": "/babel-loader/loader-utils", 14 "_phantomChildren": {}, 15 "_requested": { 16 "type": "version", 17 "registry": true, 18 "raw": "loader-utils@1.4.0", 19 "name": "loader-utils", 20 "escapedName": "loader-utils", 21 "rawSpec": "1.4.0", 22 "saveSpec": null, 23 "fetchSpec": "1.4.0" 24 }, 25 "_requiredBy": [ 26 "/babel-loader" 27 ], 28 "_resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", 29 "_spec": "1.4.0", 30 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 31 "author": { 32 "name": "Tobias Koppers @sokra" 33 }, 34 "bugs": { 35 "url": "https://github.com/webpack/loader-utils/issues" 36 }, 6 37 "dependencies": { 7 38 "big.js": "^5.2.2", … … 9 40 "json5": "^1.0.1" 10 41 }, 11 "scripts": { 12 "lint": "eslint lib test", 13 "pretest": "yarn lint", 14 "test": "jest", 15 "test:ci": "jest --coverage", 16 "release": "yarn test && standard-version" 17 }, 18 "license": "MIT", 19 "repository": { 20 "type": "git", 21 "url": "https://github.com/webpack/loader-utils.git" 22 }, 23 "engines": { 24 "node": ">=4.0.0" 25 }, 42 "description": "utils for webpack loaders", 26 43 "devDependencies": { 27 44 "coveralls": "^3.0.2", … … 33 50 "standard-version": "^4.0.0" 34 51 }, 35 "main": "lib/index.js", 52 "engines": { 53 "node": ">=4.0.0" 54 }, 36 55 "files": [ 37 56 "lib" 38 ] 57 ], 58 "homepage": "https://github.com/webpack/loader-utils#readme", 59 "license": "MIT", 60 "main": "lib/index.js", 61 "name": "loader-utils", 62 "repository": { 63 "type": "git", 64 "url": "git+https://github.com/webpack/loader-utils.git" 65 }, 66 "scripts": { 67 "lint": "eslint lib test", 68 "pretest": "yarn lint", 69 "release": "yarn test && standard-version", 70 "test": "jest", 71 "test:ci": "jest --coverage" 72 }, 73 "version": "1.4.0" 39 74 } -
trip-planner-front/node_modules/babel-loader/package.json
rceaed42 r59329aa 1 1 { 2 " name": "babel-loader",3 "version": "8.2.2",4 "description": "babel module loader for webpack",5 "files": [6 "lib"2 "_args": [ 3 [ 4 "babel-loader@8.2.2", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 7 ], 8 "main": "lib/index.js", 9 "engines": { 10 "node": ">= 8.9" 8 "_development": true, 9 "_from": "babel-loader@8.2.2", 10 "_id": "babel-loader@8.2.2", 11 "_inBundle": false, 12 "_integrity": "sha512-JvTd0/D889PQBtUXJ2PXaKU/pjZDMtHA9V2ecm+eNRmmBCMR09a+fmpGTNwnJtFmFl5Ei7Vy47LjBb+L0wQ99g==", 13 "_location": "/babel-loader", 14 "_phantomChildren": { 15 "big.js": "5.2.2", 16 "emojis-list": "3.0.0", 17 "minimist": "1.2.5" 18 }, 19 "_requested": { 20 "type": "version", 21 "registry": true, 22 "raw": "babel-loader@8.2.2", 23 "name": "babel-loader", 24 "escapedName": "babel-loader", 25 "rawSpec": "8.2.2", 26 "saveSpec": null, 27 "fetchSpec": "8.2.2" 28 }, 29 "_requiredBy": [ 30 "/@angular-devkit/build-angular" 31 ], 32 "_resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.2.tgz", 33 "_spec": "8.2.2", 34 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 35 "author": { 36 "name": "Luis Couto", 37 "email": "hello@luiscouto.pt" 38 }, 39 "ava": { 40 "files": [ 41 "test/**/*.test.js", 42 "!test/fixtures/**/*", 43 "!test/helpers/**/*" 44 ], 45 "babel": { 46 "compileAsTests": [ 47 "test/helpers/**/*" 48 ] 49 } 50 }, 51 "bugs": { 52 "url": "https://github.com/babel/babel-loader/issues" 11 53 }, 12 54 "dependencies": { … … 16 58 "schema-utils": "^2.6.5" 17 59 }, 18 "peerDependencies": { 19 "@babel/core": "^7.0.0", 20 "webpack": ">=2" 21 }, 60 "description": "babel module loader for webpack", 22 61 "devDependencies": { 23 62 "@ava/babel": "^1.0.1", … … 47 86 "webpack": "^5.4.0" 48 87 }, 49 "scripts": { 50 "clean": "rimraf lib/", 51 "build": "babel src/ --out-dir lib/ --copy-files", 52 "format": "prettier --write --trailing-comma all 'src/**/*.js' 'test/**/*.test.js' 'test/helpers/*.js' && prettier --write --trailing-comma es5 'scripts/*.js'", 53 "lint": "eslint src test", 54 "precommit": "lint-staged", 55 "prepublish": "yarn run clean && yarn run build", 56 "preversion": "yarn run test", 57 "test": "yarn run lint && cross-env BABEL_ENV=test yarn run build && yarn run test-only", 58 "test-only": "nyc ava" 88 "engines": { 89 "node": ">= 8.9" 59 90 }, 60 " repository": {61 " type": "git",62 "url": "https://github.com/babel/babel-loader.git"63 },91 "files": [ 92 "lib" 93 ], 94 "homepage": "https://github.com/babel/babel-loader", 64 95 "keywords": [ 65 96 "webpack", … … 70 101 "module" 71 102 ], 72 "author": "Luis Couto <hello@luiscouto.pt>",73 103 "license": "MIT", 74 "bugs": {75 "url": "https://github.com/babel/babel-loader/issues"76 },77 "homepage": "https://github.com/babel/babel-loader",78 "nyc": {79 "all": true,80 "include": [81 "src/**/*.js"82 ],83 "reporter": [84 "text",85 "json"86 ],87 "sourceMap": false,88 "instrument": false89 },90 "ava": {91 "files": [92 "test/**/*.test.js",93 "!test/fixtures/**/*",94 "!test/helpers/**/*"95 ],96 "babel": {97 "compileAsTests": [98 "test/helpers/**/*"99 ]100 }101 },102 104 "lint-staged": { 103 105 "scripts/*.js": [ … … 121 123 "git add yarn.lock" 122 124 ] 123 } 125 }, 126 "main": "lib/index.js", 127 "name": "babel-loader", 128 "nyc": { 129 "all": true, 130 "include": [ 131 "src/**/*.js" 132 ], 133 "reporter": [ 134 "text", 135 "json" 136 ], 137 "sourceMap": false, 138 "instrument": false 139 }, 140 "peerDependencies": { 141 "@babel/core": "^7.0.0", 142 "webpack": ">=2" 143 }, 144 "repository": { 145 "type": "git", 146 "url": "git+https://github.com/babel/babel-loader.git" 147 }, 148 "scripts": { 149 "build": "babel src/ --out-dir lib/ --copy-files", 150 "clean": "rimraf lib/", 151 "format": "prettier --write --trailing-comma all 'src/**/*.js' 'test/**/*.test.js' 'test/helpers/*.js' && prettier --write --trailing-comma es5 'scripts/*.js'", 152 "lint": "eslint src test", 153 "precommit": "lint-staged", 154 "prepublish": "yarn run clean && yarn run build", 155 "preversion": "yarn run test", 156 "test": "yarn run lint && cross-env BABEL_ENV=test yarn run build && yarn run test-only", 157 "test-only": "nyc ava" 158 }, 159 "version": "8.2.2" 124 160 }
Note:
See TracChangeset
for help on using the changeset viewer.