Changeset 59329aa for trip-planner-front/node_modules/less
- Timestamp:
- 11/23/21 14:58:44 (3 years ago)
- Branches:
- master
- Children:
- e29cc2e
- Parents:
- ceaed42
- Location:
- trip-planner-front/node_modules/less
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trip-planner-front/node_modules/less/node_modules/.bin/mime ¶
rceaed42 r59329aa 7 7 8 8 if [ -x "$basedir/node" ]; then 9 exec "$basedir/node" "$basedir/../mime/cli.js" "$@" 9 "$basedir/node" "$basedir/../mime/cli.js" "$@" 10 ret=$? 10 11 else 11 exec node "$basedir/../mime/cli.js" "$@" 12 node "$basedir/../mime/cli.js" "$@" 13 ret=$? 12 14 fi 15 exit $ret -
TabularUnified trip-planner-front/node_modules/less/node_modules/.bin/mime.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%\..\mime\cli.js" %* 12 "%_prog%" "%dp0%\..\mime\cli.js" %* 13 ENDLOCAL 14 EXIT /b %errorlevel% 15 :find_dp0 16 SET dp0=%~dp0 17 EXIT /b -
TabularUnified trip-planner-front/node_modules/less/node_modules/.bin/mime.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/../mime/cli.js" $args 15 } else { 16 & "$basedir/node$exe" "$basedir/../mime/cli.js" $args 17 } 12 & "$basedir/node$exe" "$basedir/../mime/cli.js" $args 18 13 $ret=$LASTEXITCODE 19 14 } else { 20 # Support pipeline input 21 if ($MyInvocation.ExpectingInput) { 22 $input | & "node$exe" "$basedir/../mime/cli.js" $args 23 } else { 24 & "node$exe" "$basedir/../mime/cli.js" $args 25 } 15 & "node$exe" "$basedir/../mime/cli.js" $args 26 16 $ret=$LASTEXITCODE 27 17 } -
TabularUnified trip-planner-front/node_modules/less/node_modules/.bin/semver ¶
rceaed42 r59329aa 7 7 8 8 if [ -x "$basedir/node" ]; then 9 exec "$basedir/node" "$basedir/../semver/bin/semver" "$@" 9 "$basedir/node" "$basedir/../semver/bin/semver" "$@" 10 ret=$? 10 11 else 11 exec node "$basedir/../semver/bin/semver" "$@" 12 node "$basedir/../semver/bin/semver" "$@" 13 ret=$? 12 14 fi 15 exit $ret -
TabularUnified trip-planner-front/node_modules/less/node_modules/.bin/semver.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%\..\semver\bin\semver" %* 12 "%_prog%" "%dp0%\..\semver\bin\semver" %* 13 ENDLOCAL 14 EXIT /b %errorlevel% 15 :find_dp0 16 SET dp0=%~dp0 17 EXIT /b -
TabularUnified trip-planner-front/node_modules/less/node_modules/.bin/semver.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/../semver/bin/semver" $args 15 } else { 16 & "$basedir/node$exe" "$basedir/../semver/bin/semver" $args 17 } 12 & "$basedir/node$exe" "$basedir/../semver/bin/semver" $args 18 13 $ret=$LASTEXITCODE 19 14 } else { 20 # Support pipeline input 21 if ($MyInvocation.ExpectingInput) { 22 $input | & "node$exe" "$basedir/../semver/bin/semver" $args 23 } else { 24 & "node$exe" "$basedir/../semver/bin/semver" $args 25 } 15 & "node$exe" "$basedir/../semver/bin/semver" $args 26 16 $ret=$LASTEXITCODE 27 17 } -
TabularUnified trip-planner-front/node_modules/less/node_modules/make-dir/package.json ¶
rceaed42 r59329aa 1 1 { 2 "name": "make-dir", 3 "version": "2.1.0", 4 "description": "Make a directory and its parents if needed - Think `mkdir -p`", 5 "license": "MIT", 6 "repository": "sindresorhus/make-dir", 7 "author": { 8 "name": "Sindre Sorhus", 9 "email": "sindresorhus@gmail.com", 10 "url": "sindresorhus.com" 11 }, 12 "engines": { 13 "node": ">=6" 14 }, 15 "scripts": { 16 "test": "xo && nyc ava && tsd-check" 17 }, 18 "files": [ 19 "index.js", 20 "index.d.ts" 21 ], 22 "keywords": [ 23 "mkdir", 24 "mkdirp", 25 "make", 26 "directories", 27 "dir", 28 "dirs", 29 "folders", 30 "directory", 31 "folder", 32 "path", 33 "parent", 34 "parents", 35 "intermediate", 36 "recursively", 37 "recursive", 38 "create", 39 "fs", 40 "filesystem", 41 "file-system" 42 ], 43 "dependencies": { 44 "pify": "^4.0.1", 45 "semver": "^5.6.0" 46 }, 47 "devDependencies": { 48 "@types/graceful-fs": "^4.1.3", 49 "@types/node": "^11.10.4", 50 "ava": "^1.2.0", 51 "codecov": "^3.0.0", 52 "graceful-fs": "^4.1.11", 53 "nyc": "^13.1.0", 54 "path-type": "^3.0.0", 55 "tempy": "^0.2.1", 56 "tsd-check": "^0.3.0", 57 "xo": "^0.24.0" 58 } 2 "_args": [ 3 [ 4 "make-dir@2.1.0", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "make-dir@2.1.0", 10 "_id": "make-dir@2.1.0", 11 "_inBundle": false, 12 "_integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", 13 "_location": "/less/make-dir", 14 "_optional": true, 15 "_phantomChildren": {}, 16 "_requested": { 17 "type": "version", 18 "registry": true, 19 "raw": "make-dir@2.1.0", 20 "name": "make-dir", 21 "escapedName": "make-dir", 22 "rawSpec": "2.1.0", 23 "saveSpec": null, 24 "fetchSpec": "2.1.0" 25 }, 26 "_requiredBy": [ 27 "/less" 28 ], 29 "_resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", 30 "_spec": "2.1.0", 31 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 32 "author": { 33 "name": "Sindre Sorhus", 34 "email": "sindresorhus@gmail.com", 35 "url": "sindresorhus.com" 36 }, 37 "bugs": { 38 "url": "https://github.com/sindresorhus/make-dir/issues" 39 }, 40 "dependencies": { 41 "pify": "^4.0.1", 42 "semver": "^5.6.0" 43 }, 44 "description": "Make a directory and its parents if needed - Think `mkdir -p`", 45 "devDependencies": { 46 "@types/graceful-fs": "^4.1.3", 47 "@types/node": "^11.10.4", 48 "ava": "^1.2.0", 49 "codecov": "^3.0.0", 50 "graceful-fs": "^4.1.11", 51 "nyc": "^13.1.0", 52 "path-type": "^3.0.0", 53 "tempy": "^0.2.1", 54 "tsd-check": "^0.3.0", 55 "xo": "^0.24.0" 56 }, 57 "engines": { 58 "node": ">=6" 59 }, 60 "files": [ 61 "index.js", 62 "index.d.ts" 63 ], 64 "homepage": "https://github.com/sindresorhus/make-dir#readme", 65 "keywords": [ 66 "mkdir", 67 "mkdirp", 68 "make", 69 "directories", 70 "dir", 71 "dirs", 72 "folders", 73 "directory", 74 "folder", 75 "path", 76 "parent", 77 "parents", 78 "intermediate", 79 "recursively", 80 "recursive", 81 "create", 82 "fs", 83 "filesystem", 84 "file-system" 85 ], 86 "license": "MIT", 87 "name": "make-dir", 88 "repository": { 89 "type": "git", 90 "url": "git+https://github.com/sindresorhus/make-dir.git" 91 }, 92 "scripts": { 93 "test": "xo && nyc ava && tsd-check" 94 }, 95 "version": "2.1.0" 59 96 } -
TabularUnified trip-planner-front/node_modules/less/node_modules/mime/package.json ¶
rceaed42 r59329aa 1 1 { 2 "_args": [ 3 [ 4 "mime@1.6.0", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "mime@1.6.0", 10 "_id": "mime@1.6.0", 11 "_inBundle": false, 12 "_integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", 13 "_location": "/less/mime", 14 "_optional": true, 15 "_phantomChildren": {}, 16 "_requested": { 17 "type": "version", 18 "registry": true, 19 "raw": "mime@1.6.0", 20 "name": "mime", 21 "escapedName": "mime", 22 "rawSpec": "1.6.0", 23 "saveSpec": null, 24 "fetchSpec": "1.6.0" 25 }, 26 "_requiredBy": [ 27 "/less" 28 ], 29 "_resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", 30 "_spec": "1.6.0", 31 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 2 32 "author": { 3 33 "name": "Robert Kieffer", 4 " url": "http://github.com/broofa",5 " email": "robert@broofa.com"34 "email": "robert@broofa.com", 35 "url": "http://github.com/broofa" 6 36 }, 7 37 "bin": { 8 38 "mime": "cli.js" 9 39 }, 10 " engines": {11 " node": ">=4"40 "bugs": { 41 "url": "https://github.com/broofa/node-mime/issues" 12 42 }, 13 43 "contributors": [ 14 44 { 15 45 "name": "Benjamin Thomas", 16 " url": "http://github.com/bentomas",17 " email": "benjamin@benjaminthomas.org"46 "email": "benjamin@benjaminthomas.org", 47 "url": "http://github.com/bentomas" 18 48 } 19 49 ], 50 "dependencies": {}, 20 51 "description": "A comprehensive library for mime-type mapping", 21 "license": "MIT",22 "dependencies": {},23 52 "devDependencies": { 24 53 "github-release-notes": "0.13.1", … … 26 55 "mime-score": "1.1.0" 27 56 }, 28 "scripts": { 29 "prepare": "node src/build.js", 30 "changelog": "gren changelog --tags=all --generate --override", 31 "test": "node src/test.js" 57 "engines": { 58 "node": ">=4" 32 59 }, 60 "homepage": "https://github.com/broofa/node-mime#readme", 33 61 "keywords": [ 34 62 "util", 35 63 "mime" 36 64 ], 65 "license": "MIT", 37 66 "main": "mime.js", 38 67 "name": "mime", 39 68 "repository": { 40 "url": " https://github.com/broofa/node-mime",69 "url": "git+https://github.com/broofa/node-mime.git", 41 70 "type": "git" 71 }, 72 "scripts": { 73 "changelog": "gren changelog --tags=all --generate --override", 74 "prepare": "node src/build.js", 75 "test": "node src/test.js" 42 76 }, 43 77 "version": "1.6.0" -
TabularUnified trip-planner-front/node_modules/less/node_modules/pify/package.json ¶
rceaed42 r59329aa 1 1 { 2 "name": "pify", 3 "version": "4.0.1", 4 "description": "Promisify a callback-style function", 5 "license": "MIT", 6 "repository": "sindresorhus/pify", 7 "author": { 8 "name": "Sindre Sorhus", 9 "email": "sindresorhus@gmail.com", 10 "url": "sindresorhus.com" 11 }, 12 "engines": { 13 "node": ">=6" 14 }, 15 "scripts": { 16 "test": "xo && ava", 17 "optimization-test": "node --allow-natives-syntax optimization-test.js" 18 }, 19 "files": [ 20 "index.js" 21 ], 22 "keywords": [ 23 "promise", 24 "promises", 25 "promisify", 26 "all", 27 "denodify", 28 "denodeify", 29 "callback", 30 "cb", 31 "node", 32 "then", 33 "thenify", 34 "convert", 35 "transform", 36 "wrap", 37 "wrapper", 38 "bind", 39 "to", 40 "async", 41 "await", 42 "es2015", 43 "bluebird" 44 ], 45 "devDependencies": { 46 "ava": "^0.25.0", 47 "pinkie-promise": "^2.0.0", 48 "v8-natives": "^1.1.0", 49 "xo": "^0.23.0" 50 } 2 "_args": [ 3 [ 4 "pify@4.0.1", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "pify@4.0.1", 10 "_id": "pify@4.0.1", 11 "_inBundle": false, 12 "_integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", 13 "_location": "/less/pify", 14 "_optional": true, 15 "_phantomChildren": {}, 16 "_requested": { 17 "type": "version", 18 "registry": true, 19 "raw": "pify@4.0.1", 20 "name": "pify", 21 "escapedName": "pify", 22 "rawSpec": "4.0.1", 23 "saveSpec": null, 24 "fetchSpec": "4.0.1" 25 }, 26 "_requiredBy": [ 27 "/less/make-dir" 28 ], 29 "_resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", 30 "_spec": "4.0.1", 31 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 32 "author": { 33 "name": "Sindre Sorhus", 34 "email": "sindresorhus@gmail.com", 35 "url": "sindresorhus.com" 36 }, 37 "bugs": { 38 "url": "https://github.com/sindresorhus/pify/issues" 39 }, 40 "description": "Promisify a callback-style function", 41 "devDependencies": { 42 "ava": "^0.25.0", 43 "pinkie-promise": "^2.0.0", 44 "v8-natives": "^1.1.0", 45 "xo": "^0.23.0" 46 }, 47 "engines": { 48 "node": ">=6" 49 }, 50 "files": [ 51 "index.js" 52 ], 53 "homepage": "https://github.com/sindresorhus/pify#readme", 54 "keywords": [ 55 "promise", 56 "promises", 57 "promisify", 58 "all", 59 "denodify", 60 "denodeify", 61 "callback", 62 "cb", 63 "node", 64 "then", 65 "thenify", 66 "convert", 67 "transform", 68 "wrap", 69 "wrapper", 70 "bind", 71 "to", 72 "async", 73 "await", 74 "es2015", 75 "bluebird" 76 ], 77 "license": "MIT", 78 "name": "pify", 79 "repository": { 80 "type": "git", 81 "url": "git+https://github.com/sindresorhus/pify.git" 82 }, 83 "scripts": { 84 "optimization-test": "node --allow-natives-syntax optimization-test.js", 85 "test": "xo && ava" 86 }, 87 "version": "4.0.1" 51 88 } -
TabularUnified trip-planner-front/node_modules/less/node_modules/semver/package.json ¶
rceaed42 r59329aa 1 1 { 2 "name": "semver", 3 "version": "5.7.1", 2 "_args": [ 3 [ 4 "semver@5.7.1", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "semver@5.7.1", 10 "_id": "semver@5.7.1", 11 "_inBundle": false, 12 "_integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", 13 "_location": "/less/semver", 14 "_optional": true, 15 "_phantomChildren": {}, 16 "_requested": { 17 "type": "version", 18 "registry": true, 19 "raw": "semver@5.7.1", 20 "name": "semver", 21 "escapedName": "semver", 22 "rawSpec": "5.7.1", 23 "saveSpec": null, 24 "fetchSpec": "5.7.1" 25 }, 26 "_requiredBy": [ 27 "/less/make-dir" 28 ], 29 "_resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", 30 "_spec": "5.7.1", 31 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 32 "bin": { 33 "semver": "bin/semver" 34 }, 35 "bugs": { 36 "url": "https://github.com/npm/node-semver/issues" 37 }, 4 38 "description": "The semantic version parser used by npm.", 5 "main": "semver.js",6 "scripts": {7 "test": "tap",8 "preversion": "npm test",9 "postversion": "npm publish",10 "postpublish": "git push origin --all; git push origin --tags"11 },12 39 "devDependencies": { 13 40 "tap": "^13.0.0-rc.18" 14 },15 "license": "ISC",16 "repository": "https://github.com/npm/node-semver",17 "bin": {18 "semver": "./bin/semver"19 41 }, 20 42 "files": [ … … 23 45 "semver.js" 24 46 ], 47 "homepage": "https://github.com/npm/node-semver#readme", 48 "license": "ISC", 49 "main": "semver.js", 50 "name": "semver", 51 "repository": { 52 "type": "git", 53 "url": "git+https://github.com/npm/node-semver.git" 54 }, 55 "scripts": { 56 "postpublish": "git push origin --all; git push origin --tags", 57 "postversion": "npm publish", 58 "preversion": "npm test", 59 "test": "tap" 60 }, 25 61 "tap": { 26 62 "check-coverage": true 27 } 63 }, 64 "version": "5.7.1" 28 65 } -
TabularUnified trip-planner-front/node_modules/less/node_modules/source-map/package.json ¶
rceaed42 r59329aa 1 1 { 2 "name": "source-map", 2 "_args": [ 3 [ 4 "source-map@0.6.1", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "source-map@0.6.1", 10 "_id": "source-map@0.6.1", 11 "_inBundle": false, 12 "_integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", 13 "_location": "/less/source-map", 14 "_optional": true, 15 "_phantomChildren": {}, 16 "_requested": { 17 "type": "version", 18 "registry": true, 19 "raw": "source-map@0.6.1", 20 "name": "source-map", 21 "escapedName": "source-map", 22 "rawSpec": "0.6.1", 23 "saveSpec": null, 24 "fetchSpec": "0.6.1" 25 }, 26 "_requiredBy": [ 27 "/less" 28 ], 29 "_resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", 30 "_spec": "0.6.1", 31 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 32 "author": { 33 "name": "Nick Fitzgerald", 34 "email": "nfitzgerald@mozilla.com" 35 }, 36 "bugs": { 37 "url": "https://github.com/mozilla/source-map/issues" 38 }, 39 "contributors": [ 40 { 41 "name": "Tobias Koppers", 42 "email": "tobias.koppers@googlemail.com" 43 }, 44 { 45 "name": "Duncan Beevers", 46 "email": "duncan@dweebd.com" 47 }, 48 { 49 "name": "Stephen Crane", 50 "email": "scrane@mozilla.com" 51 }, 52 { 53 "name": "Ryan Seddon", 54 "email": "seddon.ryan@gmail.com" 55 }, 56 { 57 "name": "Miles Elam", 58 "email": "miles.elam@deem.com" 59 }, 60 { 61 "name": "Mihai Bazon", 62 "email": "mihai.bazon@gmail.com" 63 }, 64 { 65 "name": "Michael Ficarra", 66 "email": "github.public.email@michael.ficarra.me" 67 }, 68 { 69 "name": "Todd Wolfson", 70 "email": "todd@twolfson.com" 71 }, 72 { 73 "name": "Alexander Solovyov", 74 "email": "alexander@solovyov.net" 75 }, 76 { 77 "name": "Felix Gnass", 78 "email": "fgnass@gmail.com" 79 }, 80 { 81 "name": "Conrad Irwin", 82 "email": "conrad.irwin@gmail.com" 83 }, 84 { 85 "name": "usrbincc", 86 "email": "usrbincc@yahoo.com" 87 }, 88 { 89 "name": "David Glasser", 90 "email": "glasser@davidglasser.net" 91 }, 92 { 93 "name": "Chase Douglas", 94 "email": "chase@newrelic.com" 95 }, 96 { 97 "name": "Evan Wallace", 98 "email": "evan.exe@gmail.com" 99 }, 100 { 101 "name": "Heather Arthur", 102 "email": "fayearthur@gmail.com" 103 }, 104 { 105 "name": "Hugh Kennedy", 106 "email": "hughskennedy@gmail.com" 107 }, 108 { 109 "name": "David Glasser", 110 "email": "glasser@davidglasser.net" 111 }, 112 { 113 "name": "Simon Lydell", 114 "email": "simon.lydell@gmail.com" 115 }, 116 { 117 "name": "Jmeas Smith", 118 "email": "jellyes2@gmail.com" 119 }, 120 { 121 "name": "Michael Z Goddard", 122 "email": "mzgoddard@gmail.com" 123 }, 124 { 125 "name": "azu", 126 "email": "azu@users.noreply.github.com" 127 }, 128 { 129 "name": "John Gozde", 130 "email": "john@gozde.ca" 131 }, 132 { 133 "name": "Adam Kirkton", 134 "email": "akirkton@truefitinnovation.com" 135 }, 136 { 137 "name": "Chris Montgomery", 138 "email": "christopher.montgomery@dowjones.com" 139 }, 140 { 141 "name": "J. Ryan Stinnett", 142 "email": "jryans@gmail.com" 143 }, 144 { 145 "name": "Jack Herrington", 146 "email": "jherrington@walmartlabs.com" 147 }, 148 { 149 "name": "Chris Truter", 150 "email": "jeffpalentine@gmail.com" 151 }, 152 { 153 "name": "Daniel Espeset", 154 "email": "daniel@danielespeset.com" 155 }, 156 { 157 "name": "Jamie Wong", 158 "email": "jamie.lf.wong@gmail.com" 159 }, 160 { 161 "name": "Eddy Bruël", 162 "email": "ejpbruel@mozilla.com" 163 }, 164 { 165 "name": "Hawken Rives", 166 "email": "hawkrives@gmail.com" 167 }, 168 { 169 "name": "Gilad Peleg", 170 "email": "giladp007@gmail.com" 171 }, 172 { 173 "name": "djchie", 174 "email": "djchie.dev@gmail.com" 175 }, 176 { 177 "name": "Gary Ye", 178 "email": "garysye@gmail.com" 179 }, 180 { 181 "name": "Nicolas Lalevée", 182 "email": "nicolas.lalevee@hibnet.org" 183 } 184 ], 3 185 "description": "Generates and consumes source maps", 4 "version": "0.6.1", 5 "homepage": "https://github.com/mozilla/source-map", 6 "author": "Nick Fitzgerald <nfitzgerald@mozilla.com>", 7 "contributors": [ 8 "Tobias Koppers <tobias.koppers@googlemail.com>", 9 "Duncan Beevers <duncan@dweebd.com>", 10 "Stephen Crane <scrane@mozilla.com>", 11 "Ryan Seddon <seddon.ryan@gmail.com>", 12 "Miles Elam <miles.elam@deem.com>", 13 "Mihai Bazon <mihai.bazon@gmail.com>", 14 "Michael Ficarra <github.public.email@michael.ficarra.me>", 15 "Todd Wolfson <todd@twolfson.com>", 16 "Alexander Solovyov <alexander@solovyov.net>", 17 "Felix Gnass <fgnass@gmail.com>", 18 "Conrad Irwin <conrad.irwin@gmail.com>", 19 "usrbincc <usrbincc@yahoo.com>", 20 "David Glasser <glasser@davidglasser.net>", 21 "Chase Douglas <chase@newrelic.com>", 22 "Evan Wallace <evan.exe@gmail.com>", 23 "Heather Arthur <fayearthur@gmail.com>", 24 "Hugh Kennedy <hughskennedy@gmail.com>", 25 "David Glasser <glasser@davidglasser.net>", 26 "Simon Lydell <simon.lydell@gmail.com>", 27 "Jmeas Smith <jellyes2@gmail.com>", 28 "Michael Z Goddard <mzgoddard@gmail.com>", 29 "azu <azu@users.noreply.github.com>", 30 "John Gozde <john@gozde.ca>", 31 "Adam Kirkton <akirkton@truefitinnovation.com>", 32 "Chris Montgomery <christopher.montgomery@dowjones.com>", 33 "J. Ryan Stinnett <jryans@gmail.com>", 34 "Jack Herrington <jherrington@walmartlabs.com>", 35 "Chris Truter <jeffpalentine@gmail.com>", 36 "Daniel Espeset <daniel@danielespeset.com>", 37 "Jamie Wong <jamie.lf.wong@gmail.com>", 38 "Eddy Bruël <ejpbruel@mozilla.com>", 39 "Hawken Rives <hawkrives@gmail.com>", 40 "Gilad Peleg <giladp007@gmail.com>", 41 "djchie <djchie.dev@gmail.com>", 42 "Gary Ye <garysye@gmail.com>", 43 "Nicolas Lalevée <nicolas.lalevee@hibnet.org>" 44 ], 45 "repository": { 46 "type": "git", 47 "url": "http://github.com/mozilla/source-map.git" 48 }, 49 "main": "./source-map.js", 186 "devDependencies": { 187 "doctoc": "^0.15.0", 188 "webpack": "^1.12.0" 189 }, 190 "engines": { 191 "node": ">=0.10.0" 192 }, 50 193 "files": [ 51 194 "source-map.js", … … 57 200 "dist/source-map.min.js.map" 58 201 ], 59 "engines": { 60 "node": ">=0.10.0" 61 }, 202 "homepage": "https://github.com/mozilla/source-map", 62 203 "license": "BSD-3-Clause", 204 "main": "./source-map.js", 205 "name": "source-map", 206 "repository": { 207 "type": "git", 208 "url": "git+ssh://git@github.com/mozilla/source-map.git" 209 }, 63 210 "scripts": { 211 "build": "webpack --color", 64 212 "test": "npm run build && node test/run-tests.js", 65 "build": "webpack --color",66 213 "toc": "doctoc --title '## Table of Contents' README.md && doctoc --title '## Table of Contents' CONTRIBUTING.md" 67 214 }, 68 "devDependencies": { 69 "doctoc": "^0.15.0", 70 "webpack": "^1.12.0" 71 }, 72 "typings": "source-map" 215 "typings": "source-map", 216 "version": "0.6.1" 73 217 } -
TabularUnified trip-planner-front/node_modules/less/node_modules/tslib/package.json ¶
rceaed42 r59329aa 1 1 { 2 "_args": [ 3 [ 4 "tslib@1.14.1", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "tslib@1.14.1", 10 "_id": "tslib@1.14.1", 11 "_inBundle": false, 12 "_integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", 13 "_location": "/less/tslib", 14 "_phantomChildren": {}, 15 "_requested": { 16 "type": "version", 17 "registry": true, 18 "raw": "tslib@1.14.1", 2 19 "name": "tslib", 3 "author": "Microsoft Corp.", 4 "homepage": "https://www.typescriptlang.org/", 5 "version": "1.14.1", 6 "license": "0BSD", 7 "description": "Runtime library for TypeScript helper functions", 8 "keywords": [ 9 "TypeScript", 10 "Microsoft", 11 "compiler", 12 "language", 13 "javascript", 14 "tslib", 15 "runtime" 16 ], 17 "bugs": { 18 "url": "https://github.com/Microsoft/TypeScript/issues" 20 "escapedName": "tslib", 21 "rawSpec": "1.14.1", 22 "saveSpec": null, 23 "fetchSpec": "1.14.1" 24 }, 25 "_requiredBy": [ 26 "/less" 27 ], 28 "_resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", 29 "_spec": "1.14.1", 30 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 31 "author": { 32 "name": "Microsoft Corp." 33 }, 34 "bugs": { 35 "url": "https://github.com/Microsoft/TypeScript/issues" 36 }, 37 "description": "Runtime library for TypeScript helper functions", 38 "exports": { 39 ".": { 40 "module": "./tslib.es6.js", 41 "import": "./modules/index.js", 42 "default": "./tslib.js" 19 43 }, 20 "repository": { 21 "type": "git", 22 "url": "https://github.com/Microsoft/tslib.git" 23 }, 24 "main": "tslib.js", 25 "module": "tslib.es6.js", 26 "jsnext:main": "tslib.es6.js", 27 "typings": "tslib.d.ts", 28 "sideEffects": false, 29 "exports": { 30 ".": { 31 "module": "./tslib.es6.js", 32 "import": "./modules/index.js", 33 "default": "./tslib.js" 34 }, 35 "./": "./" 36 } 44 "./": "./" 45 }, 46 "homepage": "https://www.typescriptlang.org/", 47 "jsnext:main": "tslib.es6.js", 48 "keywords": [ 49 "TypeScript", 50 "Microsoft", 51 "compiler", 52 "language", 53 "javascript", 54 "tslib", 55 "runtime" 56 ], 57 "license": "0BSD", 58 "main": "tslib.js", 59 "module": "tslib.es6.js", 60 "name": "tslib", 61 "repository": { 62 "type": "git", 63 "url": "git+https://github.com/Microsoft/tslib.git" 64 }, 65 "sideEffects": false, 66 "typings": "tslib.d.ts", 67 "version": "1.14.1" 37 68 } -
TabularUnified trip-planner-front/node_modules/less/package.json ¶
rceaed42 r59329aa 1 1 { 2 "name": "less", 3 "version": "4.1.1", 4 "description": "Leaner CSS", 5 "homepage": "http://lesscss.org", 6 "author": { 7 "name": "Alexis Sellier", 8 "email": "self@cloudhead.net" 9 }, 10 "contributors": [ 11 "The Core Less Team" 12 ], 13 "bugs": { 14 "url": "https://github.com/less/less.js/issues" 15 }, 16 "repository": { 17 "type": "git", 18 "url": "https://github.com/less/less.js.git" 19 }, 20 "master": { 21 "url": "https://github.com/less/less.js/blob/master/", 22 "raw": "https://raw.githubusercontent.com/less/less.js/master/" 23 }, 24 "license": "Apache-2.0", 25 "bin": { 26 "lessc": "./bin/lessc" 27 }, 28 "main": "index", 29 "module": "./lib/less-node/index", 30 "directories": { 31 "test": "./test" 32 }, 33 "browser": "./dist/less.js", 34 "engines": { 35 "node": ">=6" 36 }, 37 "scripts": { 38 "test": "grunt test", 39 "grunt": "grunt", 40 "build": "npm-run-all clean compile", 41 "clean": "shx rm -rf ./lib tsconfig.tsbuildinfo", 42 "compile": "tsc -p tsconfig.json", 43 "copy:root": "shx cp -rf ./dist ../../", 44 "dev": "tsc -p tsconfig.json -w", 45 "prepublishOnly": "grunt dist" 46 }, 47 "optionalDependencies": { 48 "errno": "^0.1.1", 49 "graceful-fs": "^4.1.2", 50 "image-size": "~0.5.0", 51 "make-dir": "^2.1.0", 52 "mime": "^1.4.1", 53 "needle": "^2.5.2", 54 "source-map": "~0.6.0" 55 }, 56 "devDependencies": { 57 "@less/test-data": "^4.1.0", 58 "@less/test-import-module": "^4.0.0", 59 "@rollup/plugin-commonjs": "^17.0.0", 60 "@rollup/plugin-json": "^4.1.0", 61 "@rollup/plugin-node-resolve": "^11.0.0", 62 "@typescript-eslint/eslint-plugin": "^3.3.0", 63 "@typescript-eslint/parser": "^3.3.0", 64 "benny": "^3.6.12", 65 "bootstrap-less-port": "0.3.0", 66 "chai": "^4.2.0", 67 "diff": "^3.2.0", 68 "eslint": "^6.8.0", 69 "fs-extra": "^8.1.0", 70 "git-rev": "^0.2.1", 71 "globby": "^10.0.1", 72 "grunt": "^1.0.4", 73 "grunt-cli": "^1.3.2", 74 "grunt-contrib-clean": "^1.0.0", 75 "grunt-contrib-connect": "^1.0.2", 76 "grunt-eslint": "^21.1.0", 77 "grunt-saucelabs": "^9.0.1", 78 "grunt-shell": "^1.3.0", 79 "html-template-tag": "^3.2.0", 80 "jit-grunt": "^0.10.0", 81 "less-plugin-autoprefix": "^1.5.1", 82 "less-plugin-clean-css": "^1.5.1", 83 "minimist": "^1.2.0", 84 "mocha": "^6.2.1", 85 "mocha-headless-chrome": "^2.0.3", 86 "mocha-teamcity-reporter": "^3.0.0", 87 "nock": "^11.8.2", 88 "npm-run-all": "^4.1.5", 89 "performance-now": "^0.2.0", 90 "phin": "^2.2.3", 91 "promise": "^7.1.1", 92 "read-glob": "^3.0.0", 93 "resolve": "^1.17.0", 94 "rollup": "^2.34.1", 95 "rollup-plugin-terser": "^5.1.1", 96 "rollup-plugin-typescript2": "^0.29.0", 97 "semver": "^6.3.0", 98 "shx": "^0.3.2", 99 "time-grunt": "^1.3.0", 100 "ts-node": "^8.4.1", 101 "typescript": "^4.1.3", 102 "uikit": "2.27.4" 103 }, 104 "keywords": [ 105 "compile less", 106 "css nesting", 107 "css variable", 108 "css", 109 "gradients css", 110 "gradients css3", 111 "less compiler", 112 "less css", 113 "less mixins", 114 "less", 115 "less.js", 116 "lesscss", 117 "mixins", 118 "nested css", 119 "parser", 120 "preprocessor", 121 "bootstrap css", 122 "bootstrap less", 123 "style", 124 "styles", 125 "stylesheet", 126 "variables in css", 127 "css less" 128 ], 129 "rawcurrent": "https://raw.github.com/less/less.js/v", 130 "sourcearchive": "https://github.com/less/less.js/archive/v", 131 "dependencies": { 132 "copy-anything": "^2.0.1", 133 "parse-node-version": "^1.0.1", 134 "tslib": "^1.10.0" 135 } 2 "_args": [ 3 [ 4 "less@4.1.1", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "less@4.1.1", 10 "_id": "less@4.1.1", 11 "_inBundle": false, 12 "_integrity": "sha512-w09o8tZFPThBscl5d0Ggp3RcrKIouBoQscnOMgFH3n5V3kN/CXGHNfCkRPtxJk6nKryDXaV9aHLK55RXuH4sAw==", 13 "_location": "/less", 14 "_phantomChildren": {}, 15 "_requested": { 16 "type": "version", 17 "registry": true, 18 "raw": "less@4.1.1", 19 "name": "less", 20 "escapedName": "less", 21 "rawSpec": "4.1.1", 22 "saveSpec": null, 23 "fetchSpec": "4.1.1" 24 }, 25 "_requiredBy": [ 26 "/@angular-devkit/build-angular" 27 ], 28 "_resolved": "https://registry.npmjs.org/less/-/less-4.1.1.tgz", 29 "_spec": "4.1.1", 30 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 31 "author": { 32 "name": "Alexis Sellier", 33 "email": "self@cloudhead.net" 34 }, 35 "bin": { 36 "lessc": "bin/lessc" 37 }, 38 "browser": "./dist/less.js", 39 "bugs": { 40 "url": "https://github.com/less/less.js/issues" 41 }, 42 "contributors": [ 43 { 44 "name": "The Core Less Team" 45 } 46 ], 47 "dependencies": { 48 "copy-anything": "^2.0.1", 49 "errno": "^0.1.1", 50 "graceful-fs": "^4.1.2", 51 "image-size": "~0.5.0", 52 "make-dir": "^2.1.0", 53 "mime": "^1.4.1", 54 "needle": "^2.5.2", 55 "parse-node-version": "^1.0.1", 56 "source-map": "~0.6.0", 57 "tslib": "^1.10.0" 58 }, 59 "description": "Leaner CSS", 60 "devDependencies": { 61 "@less/test-data": "^4.1.0", 62 "@less/test-import-module": "^4.0.0", 63 "@rollup/plugin-commonjs": "^17.0.0", 64 "@rollup/plugin-json": "^4.1.0", 65 "@rollup/plugin-node-resolve": "^11.0.0", 66 "@typescript-eslint/eslint-plugin": "^3.3.0", 67 "@typescript-eslint/parser": "^3.3.0", 68 "benny": "^3.6.12", 69 "bootstrap-less-port": "0.3.0", 70 "chai": "^4.2.0", 71 "diff": "^3.2.0", 72 "eslint": "^6.8.0", 73 "fs-extra": "^8.1.0", 74 "git-rev": "^0.2.1", 75 "globby": "^10.0.1", 76 "grunt": "^1.0.4", 77 "grunt-cli": "^1.3.2", 78 "grunt-contrib-clean": "^1.0.0", 79 "grunt-contrib-connect": "^1.0.2", 80 "grunt-eslint": "^21.1.0", 81 "grunt-saucelabs": "^9.0.1", 82 "grunt-shell": "^1.3.0", 83 "html-template-tag": "^3.2.0", 84 "jit-grunt": "^0.10.0", 85 "less-plugin-autoprefix": "^1.5.1", 86 "less-plugin-clean-css": "^1.5.1", 87 "minimist": "^1.2.0", 88 "mocha": "^6.2.1", 89 "mocha-headless-chrome": "^2.0.3", 90 "mocha-teamcity-reporter": "^3.0.0", 91 "nock": "^11.8.2", 92 "npm-run-all": "^4.1.5", 93 "performance-now": "^0.2.0", 94 "phin": "^2.2.3", 95 "promise": "^7.1.1", 96 "read-glob": "^3.0.0", 97 "resolve": "^1.17.0", 98 "rollup": "^2.34.1", 99 "rollup-plugin-terser": "^5.1.1", 100 "rollup-plugin-typescript2": "^0.29.0", 101 "semver": "^6.3.0", 102 "shx": "^0.3.2", 103 "time-grunt": "^1.3.0", 104 "ts-node": "^8.4.1", 105 "typescript": "^4.1.3", 106 "uikit": "2.27.4" 107 }, 108 "directories": { 109 "test": "./test" 110 }, 111 "engines": { 112 "node": ">=6" 113 }, 114 "homepage": "http://lesscss.org", 115 "keywords": [ 116 "compile less", 117 "css nesting", 118 "css variable", 119 "css", 120 "gradients css", 121 "gradients css3", 122 "less compiler", 123 "less css", 124 "less mixins", 125 "less", 126 "less.js", 127 "lesscss", 128 "mixins", 129 "nested css", 130 "parser", 131 "preprocessor", 132 "bootstrap css", 133 "bootstrap less", 134 "style", 135 "styles", 136 "stylesheet", 137 "variables in css", 138 "css less" 139 ], 140 "license": "Apache-2.0", 141 "main": "index", 142 "master": { 143 "url": "https://github.com/less/less.js/blob/master/", 144 "raw": "https://raw.githubusercontent.com/less/less.js/master/" 145 }, 146 "module": "./lib/less-node/index", 147 "name": "less", 148 "optionalDependencies": { 149 "errno": "^0.1.1", 150 "graceful-fs": "^4.1.2", 151 "image-size": "~0.5.0", 152 "make-dir": "^2.1.0", 153 "mime": "^1.4.1", 154 "needle": "^2.5.2", 155 "source-map": "~0.6.0" 156 }, 157 "rawcurrent": "https://raw.github.com/less/less.js/v", 158 "repository": { 159 "type": "git", 160 "url": "git+https://github.com/less/less.js.git" 161 }, 162 "scripts": { 163 "build": "npm-run-all clean compile", 164 "clean": "shx rm -rf ./lib tsconfig.tsbuildinfo", 165 "compile": "tsc -p tsconfig.json", 166 "copy:root": "shx cp -rf ./dist ../../", 167 "dev": "tsc -p tsconfig.json -w", 168 "grunt": "grunt", 169 "prepublishOnly": "grunt dist", 170 "test": "grunt test" 171 }, 172 "sourcearchive": "https://github.com/less/less.js/archive/v", 173 "version": "4.1.1" 136 174 }
Note:
See TracChangeset
for help on using the changeset viewer.