Changeset 59329aa for trip-planner-front/node_modules/stylus
- Timestamp:
- 11/23/21 14:58:44 (3 years ago)
- Branches:
- master
- Children:
- e29cc2e
- Parents:
- ceaed42
- Location:
- trip-planner-front/node_modules/stylus
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/node_modules/stylus/node_modules/.bin/semver
rceaed42 r59329aa 7 7 8 8 if [ -x "$basedir/node" ]; then 9 exec "$basedir/node" "$basedir/../semver/bin/semver.js" "$@" 9 "$basedir/node" "$basedir/../semver/bin/semver.js" "$@" 10 ret=$? 10 11 else 11 exec node "$basedir/../semver/bin/semver.js" "$@" 12 node "$basedir/../semver/bin/semver.js" "$@" 13 ret=$? 12 14 fi 15 exit $ret -
trip-planner-front/node_modules/stylus/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.js" %* 12 "%_prog%" "%dp0%\..\semver\bin\semver.js" %* 13 ENDLOCAL 14 EXIT /b %errorlevel% 15 :find_dp0 16 SET dp0=%~dp0 17 EXIT /b -
trip-planner-front/node_modules/stylus/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.js" $args 15 } else { 16 & "$basedir/node$exe" "$basedir/../semver/bin/semver.js" $args 17 } 12 & "$basedir/node$exe" "$basedir/../semver/bin/semver.js" $args 18 13 $ret=$LASTEXITCODE 19 14 } else { 20 # Support pipeline input 21 if ($MyInvocation.ExpectingInput) { 22 $input | & "node$exe" "$basedir/../semver/bin/semver.js" $args 23 } else { 24 & "node$exe" "$basedir/../semver/bin/semver.js" $args 25 } 15 & "node$exe" "$basedir/../semver/bin/semver.js" $args 26 16 $ret=$LASTEXITCODE 27 17 } -
trip-planner-front/node_modules/stylus/node_modules/debug/package.json
rceaed42 r59329aa 1 1 { 2 "name": "debug", 3 "version": "3.1.0", 4 "repository": { 5 "type": "git", 6 "url": "git://github.com/visionmedia/debug.git" 2 "_args": [ 3 [ 4 "debug@3.1.0", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "debug@3.1.0", 10 "_id": "debug@3.1.0", 11 "_inBundle": false, 12 "_integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", 13 "_location": "/stylus/debug", 14 "_phantomChildren": {}, 15 "_requested": { 16 "type": "version", 17 "registry": true, 18 "raw": "debug@3.1.0", 19 "name": "debug", 20 "escapedName": "debug", 21 "rawSpec": "3.1.0", 22 "saveSpec": null, 23 "fetchSpec": "3.1.0" 7 24 }, 8 "description": "small debugging utility", 9 "keywords": [ 10 "debug", 11 "log", 12 "debugger" 25 "_requiredBy": [ 26 "/stylus" 13 27 ], 14 "author": "TJ Holowaychuk <tj@vision-media.ca>", 28 "_resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", 29 "_spec": "3.1.0", 30 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 31 "author": { 32 "name": "TJ Holowaychuk", 33 "email": "tj@vision-media.ca" 34 }, 35 "browser": "./src/browser.js", 36 "bugs": { 37 "url": "https://github.com/visionmedia/debug/issues" 38 }, 15 39 "contributors": [ 16 "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io)", 17 "Andrew Rhyne <rhyneandrew@gmail.com>" 40 { 41 "name": "Nathan Rajlich", 42 "email": "nathan@tootallnate.net", 43 "url": "http://n8.io" 44 }, 45 { 46 "name": "Andrew Rhyne", 47 "email": "rhyneandrew@gmail.com" 48 } 18 49 ], 19 "license": "MIT",20 50 "dependencies": { 21 51 "ms": "2.0.0" 22 52 }, 53 "description": "small debugging utility", 23 54 "devDependencies": { 24 55 "browserify": "14.4.0", … … 39 70 "sinon-chai": "^2.8.0" 40 71 }, 72 "homepage": "https://github.com/visionmedia/debug#readme", 73 "keywords": [ 74 "debug", 75 "log", 76 "debugger" 77 ], 78 "license": "MIT", 41 79 "main": "./src/index.js", 42 "browser": "./src/browser.js" 80 "name": "debug", 81 "repository": { 82 "type": "git", 83 "url": "git://github.com/visionmedia/debug.git" 84 }, 85 "version": "3.1.0" 43 86 } -
trip-planner-front/node_modules/stylus/node_modules/ms/package.json
rceaed42 r59329aa 1 1 { 2 "name": "ms", 3 "version": "2.0.0", 2 "_args": [ 3 [ 4 "ms@2.0.0", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "ms@2.0.0", 10 "_id": "ms@2.0.0", 11 "_inBundle": false, 12 "_integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", 13 "_location": "/stylus/ms", 14 "_phantomChildren": {}, 15 "_requested": { 16 "type": "version", 17 "registry": true, 18 "raw": "ms@2.0.0", 19 "name": "ms", 20 "escapedName": "ms", 21 "rawSpec": "2.0.0", 22 "saveSpec": null, 23 "fetchSpec": "2.0.0" 24 }, 25 "_requiredBy": [ 26 "/stylus/debug" 27 ], 28 "_resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 29 "_spec": "2.0.0", 30 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 31 "bugs": { 32 "url": "https://github.com/zeit/ms/issues" 33 }, 4 34 "description": "Tiny milisecond conversion utility", 5 "repository": "zeit/ms", 6 "main": "./index", 7 "files": [ 8 "index.js" 9 ], 10 "scripts": { 11 "precommit": "lint-staged", 12 "lint": "eslint lib/* bin/*", 13 "test": "mocha tests.js" 35 "devDependencies": { 36 "eslint": "3.19.0", 37 "expect.js": "0.3.1", 38 "husky": "0.13.3", 39 "lint-staged": "3.4.1", 40 "mocha": "3.4.1" 14 41 }, 15 42 "eslintConfig": { … … 20 47 } 21 48 }, 49 "files": [ 50 "index.js" 51 ], 52 "homepage": "https://github.com/zeit/ms#readme", 53 "license": "MIT", 22 54 "lint-staged": { 23 55 "*.js": [ … … 27 59 ] 28 60 }, 29 "license": "MIT", 30 "devDependencies": { 31 "eslint": "3.19.0", 32 "expect.js": "0.3.1", 33 "husky": "0.13.3", 34 "lint-staged": "3.4.1", 35 "mocha": "3.4.1" 36 } 61 "main": "./index", 62 "name": "ms", 63 "repository": { 64 "type": "git", 65 "url": "git+https://github.com/zeit/ms.git" 66 }, 67 "scripts": { 68 "lint": "eslint lib/* bin/*", 69 "precommit": "lint-staged", 70 "test": "mocha tests.js" 71 }, 72 "version": "2.0.0" 37 73 } -
trip-planner-front/node_modules/stylus/node_modules/semver/package.json
rceaed42 r59329aa 1 1 { 2 "name": "semver", 3 "version": "6.3.0", 2 "_args": [ 3 [ 4 "semver@6.3.0", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "semver@6.3.0", 10 "_id": "semver@6.3.0", 11 "_inBundle": false, 12 "_integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", 13 "_location": "/stylus/semver", 14 "_phantomChildren": {}, 15 "_requested": { 16 "type": "version", 17 "registry": true, 18 "raw": "semver@6.3.0", 19 "name": "semver", 20 "escapedName": "semver", 21 "rawSpec": "6.3.0", 22 "saveSpec": null, 23 "fetchSpec": "6.3.0" 24 }, 25 "_requiredBy": [ 26 "/stylus" 27 ], 28 "_resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", 29 "_spec": "6.3.0", 30 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 31 "bin": { 32 "semver": "bin/semver.js" 33 }, 34 "bugs": { 35 "url": "https://github.com/npm/node-semver/issues" 36 }, 4 37 "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 --follow-tags"11 },12 38 "devDependencies": { 13 39 "tap": "^14.3.1" 14 },15 "license": "ISC",16 "repository": "https://github.com/npm/node-semver",17 "bin": {18 "semver": "./bin/semver.js"19 40 }, 20 41 "files": [ … … 23 44 "semver.js" 24 45 ], 46 "homepage": "https://github.com/npm/node-semver#readme", 47 "license": "ISC", 48 "main": "semver.js", 49 "name": "semver", 50 "repository": { 51 "type": "git", 52 "url": "git+https://github.com/npm/node-semver.git" 53 }, 54 "scripts": { 55 "postpublish": "git push origin --follow-tags", 56 "postversion": "npm publish", 57 "preversion": "npm test", 58 "test": "tap" 59 }, 25 60 "tap": { 26 61 "check-coverage": true 27 } 62 }, 63 "version": "6.3.0" 28 64 } -
trip-planner-front/node_modules/stylus/package.json
rceaed42 r59329aa 1 1 { 2 "name": "stylus", 3 "description": "Robust, expressive, and feature-rich CSS superset", 4 "version": "0.54.8", 5 "author": "TJ Holowaychuk <tj@vision-media.ca>", 6 "keywords": [ 7 "css", 8 "parser", 9 "style", 10 "stylesheets", 11 "jade", 12 "language" 2 "_args": [ 3 [ 4 "stylus@0.54.8", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 13 7 ], 14 "repository": { 15 "type": "git", 16 "url": "git://github.com/stylus/stylus" 8 "_development": true, 9 "_from": "stylus@0.54.8", 10 "_id": "stylus@0.54.8", 11 "_inBundle": false, 12 "_integrity": "sha512-vr54Or4BZ7pJafo2mpf0ZcwA74rpuYCZbxrHBsH8kbcXOwSfvBFwsRfpGO5OD5fhG5HDCFW737PKaawI7OqEAg==", 13 "_location": "/stylus", 14 "_phantomChildren": {}, 15 "_requested": { 16 "type": "version", 17 "registry": true, 18 "raw": "stylus@0.54.8", 19 "name": "stylus", 20 "escapedName": "stylus", 21 "rawSpec": "0.54.8", 22 "saveSpec": null, 23 "fetchSpec": "0.54.8" 17 24 }, 18 "main": "./index.js", 19 "browserify": "./lib/browserify.js", 20 "engines": { 21 "node": "*" 25 "_requiredBy": [ 26 "/@angular-devkit/build-angular" 27 ], 28 "_resolved": "https://registry.npmjs.org/stylus/-/stylus-0.54.8.tgz", 29 "_spec": "0.54.8", 30 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 31 "author": { 32 "name": "TJ Holowaychuk", 33 "email": "tj@vision-media.ca" 22 34 }, 23 35 "bin": { 24 "stylus": " ./bin/stylus"36 "stylus": "bin/stylus" 25 37 }, 26 "scripts": { 27 "prepublish": "npm prune", 28 "test": "mocha test/ test/middleware/ --require should --bail --check-leaks --reporter dot", 29 "test-cov": "mocha test/ test/middleware/ --require should --bail --reporter html-cov > coverage.html" 38 "browserify": "./lib/browserify.js", 39 "bugs": { 40 "url": "https://github.com/stylus/stylus/issues" 30 41 }, 31 42 "dependencies": { … … 39 50 "source-map": "^0.7.3" 40 51 }, 52 "description": "Robust, expressive, and feature-rich CSS superset", 41 53 "devDependencies": { 42 54 "jscoverage": "~0.6.0", … … 44 56 "should": "^13.2.3" 45 57 }, 46 "bugs": {47 "url": "https://github.com/stylus/stylus/issues"48 },49 "homepage": "https://github.com/stylus/stylus",50 58 "directories": { 51 59 "doc": "docs", … … 53 61 "test": "test" 54 62 }, 55 "license": "MIT" 63 "engines": { 64 "node": "*" 65 }, 66 "homepage": "https://github.com/stylus/stylus", 67 "keywords": [ 68 "css", 69 "parser", 70 "style", 71 "stylesheets", 72 "jade", 73 "language" 74 ], 75 "license": "MIT", 76 "main": "./index.js", 77 "name": "stylus", 78 "repository": { 79 "type": "git", 80 "url": "git://github.com/stylus/stylus.git" 81 }, 82 "scripts": { 83 "prepublish": "npm prune", 84 "test": "mocha test/ test/middleware/ --require should --bail --check-leaks --reporter dot", 85 "test-cov": "mocha test/ test/middleware/ --require should --bail --reporter html-cov > coverage.html" 86 }, 87 "version": "0.54.8" 56 88 }
Note:
See TracChangeset
for help on using the changeset viewer.