- Timestamp:
- 11/23/21 14:58:44 (3 years ago)
- Branches:
- master
- Children:
- e29cc2e
- Parents:
- ceaed42
- Location:
- trip-planner-front/node_modules/postcss-dir-pseudo-class
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/node_modules/postcss-dir-pseudo-class/node_modules/.bin/cssesc
rceaed42 r59329aa 7 7 8 8 if [ -x "$basedir/node" ]; then 9 exec "$basedir/node" "$basedir/../cssesc/bin/cssesc" "$@" 9 "$basedir/node" "$basedir/../cssesc/bin/cssesc" "$@" 10 ret=$? 10 11 else 11 exec node "$basedir/../cssesc/bin/cssesc" "$@" 12 node "$basedir/../cssesc/bin/cssesc" "$@" 13 ret=$? 12 14 fi 15 exit $ret -
trip-planner-front/node_modules/postcss-dir-pseudo-class/node_modules/.bin/cssesc.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%\..\cssesc\bin\cssesc" %* 12 "%_prog%" "%dp0%\..\cssesc\bin\cssesc" %* 13 ENDLOCAL 14 EXIT /b %errorlevel% 15 :find_dp0 16 SET dp0=%~dp0 17 EXIT /b -
trip-planner-front/node_modules/postcss-dir-pseudo-class/node_modules/.bin/cssesc.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/../cssesc/bin/cssesc" $args 15 } else { 16 & "$basedir/node$exe" "$basedir/../cssesc/bin/cssesc" $args 17 } 12 & "$basedir/node$exe" "$basedir/../cssesc/bin/cssesc" $args 18 13 $ret=$LASTEXITCODE 19 14 } else { 20 # Support pipeline input 21 if ($MyInvocation.ExpectingInput) { 22 $input | & "node$exe" "$basedir/../cssesc/bin/cssesc" $args 23 } else { 24 & "node$exe" "$basedir/../cssesc/bin/cssesc" $args 25 } 15 & "node$exe" "$basedir/../cssesc/bin/cssesc" $args 26 16 $ret=$LASTEXITCODE 27 17 } -
trip-planner-front/node_modules/postcss-dir-pseudo-class/node_modules/cssesc/package.json
rceaed42 r59329aa 1 1 { 2 "name": "cssesc", 3 "version": "2.0.0", 4 "description": "A JavaScript library for escaping CSS strings and identifiers while generating the shortest possible ASCII-only output.", 5 "homepage": "https://mths.be/cssesc", 6 "engines": { 7 "node": ">=4" 2 "_args": [ 3 [ 4 "cssesc@2.0.0", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "cssesc@2.0.0", 10 "_id": "cssesc@2.0.0", 11 "_inBundle": false, 12 "_integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==", 13 "_location": "/postcss-dir-pseudo-class/cssesc", 14 "_phantomChildren": {}, 15 "_requested": { 16 "type": "version", 17 "registry": true, 18 "raw": "cssesc@2.0.0", 19 "name": "cssesc", 20 "escapedName": "cssesc", 21 "rawSpec": "2.0.0", 22 "saveSpec": null, 23 "fetchSpec": "2.0.0" 8 24 }, 9 "main": "cssesc.js", 10 "bin": "bin/cssesc", 11 "man": "man/cssesc.1", 12 "keywords": [ 13 "css", 14 "escape", 15 "identifier", 16 "string", 17 "tool" 25 "_requiredBy": [ 26 "/postcss-dir-pseudo-class/postcss-selector-parser" 18 27 ], 19 "license": "MIT", 28 "_resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", 29 "_spec": "2.0.0", 30 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 20 31 "author": { 21 32 "name": "Mathias Bynens", 22 33 "url": "https://mathiasbynens.be/" 23 34 }, 24 "repository": { 25 "type": "git", 26 "url": "https://github.com/mathiasbynens/cssesc.git" 35 "bin": { 36 "cssesc": "bin/cssesc" 27 37 }, 28 "bugs": "https://github.com/mathiasbynens/cssesc/issues", 29 "files": [ 30 "LICENSE-MIT.txt", 31 "cssesc.js", 32 "bin/", 33 "man/" 34 ], 35 "scripts": { 36 "build": "grunt template && babel cssesc.js -o cssesc.js", 37 "test": "mocha tests", 38 "cover": "istanbul cover --report html node_modules/.bin/_mocha tests -- -u exports -R spec" 38 "bugs": { 39 "url": "https://github.com/mathiasbynens/cssesc/issues" 39 40 }, 41 "description": "A JavaScript library for escaping CSS strings and identifiers while generating the shortest possible ASCII-only output.", 40 42 "devDependencies": { 41 43 "babel-cli": "^6.26.0", … … 48 50 "regenerate": "^1.2.1", 49 51 "requirejs": "^2.1.16" 50 } 52 }, 53 "engines": { 54 "node": ">=4" 55 }, 56 "files": [ 57 "LICENSE-MIT.txt", 58 "cssesc.js", 59 "bin/", 60 "man/" 61 ], 62 "homepage": "https://mths.be/cssesc", 63 "keywords": [ 64 "css", 65 "escape", 66 "identifier", 67 "string", 68 "tool" 69 ], 70 "license": "MIT", 71 "main": "cssesc.js", 72 "man": [ 73 "man/cssesc.1" 74 ], 75 "name": "cssesc", 76 "repository": { 77 "type": "git", 78 "url": "git+https://github.com/mathiasbynens/cssesc.git" 79 }, 80 "scripts": { 81 "build": "grunt template && babel cssesc.js -o cssesc.js", 82 "cover": "istanbul cover --report html node_modules/.bin/_mocha tests -- -u exports -R spec", 83 "test": "mocha tests" 84 }, 85 "version": "2.0.0" 51 86 } -
trip-planner-front/node_modules/postcss-dir-pseudo-class/node_modules/postcss-selector-parser/package.json
rceaed42 r59329aa 1 1 { 2 "name": "postcss-selector-parser", 3 "version": "5.0.0", 2 "_args": [ 3 [ 4 "postcss-selector-parser@5.0.0", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "postcss-selector-parser@5.0.0", 10 "_id": "postcss-selector-parser@5.0.0", 11 "_inBundle": false, 12 "_integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", 13 "_location": "/postcss-dir-pseudo-class/postcss-selector-parser", 14 "_phantomChildren": {}, 15 "_requested": { 16 "type": "version", 17 "registry": true, 18 "raw": "postcss-selector-parser@5.0.0", 19 "name": "postcss-selector-parser", 20 "escapedName": "postcss-selector-parser", 21 "rawSpec": "5.0.0", 22 "saveSpec": null, 23 "fetchSpec": "5.0.0" 24 }, 25 "_requiredBy": [ 26 "/postcss-dir-pseudo-class" 27 ], 28 "_resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", 29 "_spec": "5.0.0", 30 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 31 "ava": { 32 "require": "babel-register", 33 "concurrency": 5 34 }, 35 "bugs": { 36 "url": "https://github.com/postcss/postcss-selector-parser/issues" 37 }, 38 "contributors": [ 39 { 40 "name": "Ben Briggs", 41 "email": "beneb.info@gmail.com", 42 "url": "http://beneb.info" 43 }, 44 { 45 "name": "Chris Eppstein", 46 "email": "chris@eppsteins.net", 47 "url": "http://twitter.com/chriseppstein" 48 } 49 ], 50 "dependencies": { 51 "cssesc": "^2.0.0", 52 "indexes-of": "^1.0.1", 53 "uniq": "^1.0.1" 54 }, 55 "description": "> Selector parser with built in methods for working with selector strings.", 4 56 "devDependencies": { 5 57 "ava": "^0.25.0", … … 24 76 "semver": "^5.6.0" 25 77 }, 26 "main": "dist/index.js", 27 "types": "postcss-selector-parser.d.ts", 78 "engines": { 79 "node": ">=4" 80 }, 28 81 "files": [ 29 82 "API.md", … … 33 86 "postcss-selector-parser.d.ts" 34 87 ], 35 "scripts": { 36 "pretest": "eslint src", 37 "prepare": "del-cli dist && BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/", 38 "lintfix": "eslint --fix src", 39 "report": "nyc report --reporter=html", 40 "test": "nyc ava src/__tests__/*.js", 41 "testone": "ava" 42 }, 43 "dependencies": { 44 "cssesc": "^2.0.0", 45 "indexes-of": "^1.0.1", 46 "uniq": "^1.0.1" 47 }, 88 "homepage": "https://github.com/postcss/postcss-selector-parser", 48 89 "license": "MIT", 49 "engines": { 50 "node": ">=4" 51 }, 52 "homepage": "https://github.com/postcss/postcss-selector-parser", 53 "contributors": [ 54 { 55 "name": "Ben Briggs", 56 "email": "beneb.info@gmail.com", 57 "url": "http://beneb.info" 58 }, 59 { 60 "name": "Chris Eppstein", 61 "email": "chris@eppsteins.net", 62 "url": "http://twitter.com/chriseppstein" 63 } 64 ], 65 "repository": "postcss/postcss-selector-parser", 66 "ava": { 67 "require": "babel-register", 68 "concurrency": 5 69 }, 90 "main": "dist/index.js", 91 "name": "postcss-selector-parser", 70 92 "nyc": { 71 93 "exclude": [ … … 73 95 "**/__tests__" 74 96 ] 75 } 97 }, 98 "repository": { 99 "type": "git", 100 "url": "git+https://github.com/postcss/postcss-selector-parser.git" 101 }, 102 "scripts": { 103 "lintfix": "eslint --fix src", 104 "prepare": "del-cli dist && BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/", 105 "pretest": "eslint src", 106 "report": "nyc report --reporter=html", 107 "test": "nyc ava src/__tests__/*.js", 108 "testone": "ava" 109 }, 110 "types": "postcss-selector-parser.d.ts", 111 "version": "5.0.0" 76 112 } -
trip-planner-front/node_modules/postcss-dir-pseudo-class/node_modules/postcss/package.json
rceaed42 r59329aa 1 1 { 2 "name": "postcss", 3 "version": "7.0.39", 2 "_args": [ 3 [ 4 "postcss@7.0.39", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "postcss@7.0.39", 10 "_id": "postcss@7.0.39", 11 "_inBundle": false, 12 "_integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", 13 "_location": "/postcss-dir-pseudo-class/postcss", 14 "_phantomChildren": {}, 15 "_requested": { 16 "type": "version", 17 "registry": true, 18 "raw": "postcss@7.0.39", 19 "name": "postcss", 20 "escapedName": "postcss", 21 "rawSpec": "7.0.39", 22 "saveSpec": null, 23 "fetchSpec": "7.0.39" 24 }, 25 "_requiredBy": [ 26 "/postcss-dir-pseudo-class" 27 ], 28 "_resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", 29 "_spec": "7.0.39", 30 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 31 "author": { 32 "name": "Andrey Sitnik", 33 "email": "andrey@sitnik.ru" 34 }, 35 "browser": { 36 "./lib/terminal-highlight": false, 37 "fs": false 38 }, 39 "bugs": { 40 "url": "https://github.com/postcss/postcss/issues" 41 }, 42 "dependencies": { 43 "picocolors": "^0.2.1", 44 "source-map": "^0.6.1" 45 }, 4 46 "description": "Tool for transforming styles with JS plugins", 5 47 "engines": { 6 48 "node": ">=6.0.0" 7 49 }, 50 "funding": { 51 "type": "opencollective", 52 "url": "https://opencollective.com/postcss/" 53 }, 54 "homepage": "https://postcss.org/", 8 55 "keywords": [ 9 56 "css", … … 17 64 "transpiler" 18 65 ], 19 "funding": { 20 "type": "opencollective", 21 "url": "https://opencollective.com/postcss/" 66 "license": "MIT", 67 "main": "lib/postcss", 68 "name": "postcss", 69 "repository": { 70 "type": "git", 71 "url": "git+https://github.com/postcss/postcss.git" 22 72 }, 23 "author": "Andrey Sitnik <andrey@sitnik.ru>",24 "license": "MIT",25 "homepage": "https://postcss.org/",26 "repository": "postcss/postcss",27 "dependencies": {28 "picocolors": "^0.2.1",29 "source-map": "^0.6.1"30 },31 "main": "lib/postcss",32 73 "types": "lib/postcss.d.ts", 33 "browser": { 34 "./lib/terminal-highlight": false, 35 "fs": false 36 } 74 "version": "7.0.39" 37 75 } -
trip-planner-front/node_modules/postcss-dir-pseudo-class/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": "/postcss-dir-pseudo-class/source-map", 14 "_phantomChildren": {}, 15 "_requested": { 16 "type": "version", 17 "registry": true, 18 "raw": "source-map@0.6.1", 19 "name": "source-map", 20 "escapedName": "source-map", 21 "rawSpec": "0.6.1", 22 "saveSpec": null, 23 "fetchSpec": "0.6.1" 24 }, 25 "_requiredBy": [ 26 "/postcss-dir-pseudo-class/postcss" 27 ], 28 "_resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", 29 "_spec": "0.6.1", 30 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 31 "author": { 32 "name": "Nick Fitzgerald", 33 "email": "nfitzgerald@mozilla.com" 34 }, 35 "bugs": { 36 "url": "https://github.com/mozilla/source-map/issues" 37 }, 38 "contributors": [ 39 { 40 "name": "Tobias Koppers", 41 "email": "tobias.koppers@googlemail.com" 42 }, 43 { 44 "name": "Duncan Beevers", 45 "email": "duncan@dweebd.com" 46 }, 47 { 48 "name": "Stephen Crane", 49 "email": "scrane@mozilla.com" 50 }, 51 { 52 "name": "Ryan Seddon", 53 "email": "seddon.ryan@gmail.com" 54 }, 55 { 56 "name": "Miles Elam", 57 "email": "miles.elam@deem.com" 58 }, 59 { 60 "name": "Mihai Bazon", 61 "email": "mihai.bazon@gmail.com" 62 }, 63 { 64 "name": "Michael Ficarra", 65 "email": "github.public.email@michael.ficarra.me" 66 }, 67 { 68 "name": "Todd Wolfson", 69 "email": "todd@twolfson.com" 70 }, 71 { 72 "name": "Alexander Solovyov", 73 "email": "alexander@solovyov.net" 74 }, 75 { 76 "name": "Felix Gnass", 77 "email": "fgnass@gmail.com" 78 }, 79 { 80 "name": "Conrad Irwin", 81 "email": "conrad.irwin@gmail.com" 82 }, 83 { 84 "name": "usrbincc", 85 "email": "usrbincc@yahoo.com" 86 }, 87 { 88 "name": "David Glasser", 89 "email": "glasser@davidglasser.net" 90 }, 91 { 92 "name": "Chase Douglas", 93 "email": "chase@newrelic.com" 94 }, 95 { 96 "name": "Evan Wallace", 97 "email": "evan.exe@gmail.com" 98 }, 99 { 100 "name": "Heather Arthur", 101 "email": "fayearthur@gmail.com" 102 }, 103 { 104 "name": "Hugh Kennedy", 105 "email": "hughskennedy@gmail.com" 106 }, 107 { 108 "name": "David Glasser", 109 "email": "glasser@davidglasser.net" 110 }, 111 { 112 "name": "Simon Lydell", 113 "email": "simon.lydell@gmail.com" 114 }, 115 { 116 "name": "Jmeas Smith", 117 "email": "jellyes2@gmail.com" 118 }, 119 { 120 "name": "Michael Z Goddard", 121 "email": "mzgoddard@gmail.com" 122 }, 123 { 124 "name": "azu", 125 "email": "azu@users.noreply.github.com" 126 }, 127 { 128 "name": "John Gozde", 129 "email": "john@gozde.ca" 130 }, 131 { 132 "name": "Adam Kirkton", 133 "email": "akirkton@truefitinnovation.com" 134 }, 135 { 136 "name": "Chris Montgomery", 137 "email": "christopher.montgomery@dowjones.com" 138 }, 139 { 140 "name": "J. Ryan Stinnett", 141 "email": "jryans@gmail.com" 142 }, 143 { 144 "name": "Jack Herrington", 145 "email": "jherrington@walmartlabs.com" 146 }, 147 { 148 "name": "Chris Truter", 149 "email": "jeffpalentine@gmail.com" 150 }, 151 { 152 "name": "Daniel Espeset", 153 "email": "daniel@danielespeset.com" 154 }, 155 { 156 "name": "Jamie Wong", 157 "email": "jamie.lf.wong@gmail.com" 158 }, 159 { 160 "name": "Eddy Bruël", 161 "email": "ejpbruel@mozilla.com" 162 }, 163 { 164 "name": "Hawken Rives", 165 "email": "hawkrives@gmail.com" 166 }, 167 { 168 "name": "Gilad Peleg", 169 "email": "giladp007@gmail.com" 170 }, 171 { 172 "name": "djchie", 173 "email": "djchie.dev@gmail.com" 174 }, 175 { 176 "name": "Gary Ye", 177 "email": "garysye@gmail.com" 178 }, 179 { 180 "name": "Nicolas Lalevée", 181 "email": "nicolas.lalevee@hibnet.org" 182 } 183 ], 3 184 "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", 185 "devDependencies": { 186 "doctoc": "^0.15.0", 187 "webpack": "^1.12.0" 188 }, 189 "engines": { 190 "node": ">=0.10.0" 191 }, 50 192 "files": [ 51 193 "source-map.js", … … 57 199 "dist/source-map.min.js.map" 58 200 ], 59 "engines": { 60 "node": ">=0.10.0" 61 }, 201 "homepage": "https://github.com/mozilla/source-map", 62 202 "license": "BSD-3-Clause", 203 "main": "./source-map.js", 204 "name": "source-map", 205 "repository": { 206 "type": "git", 207 "url": "git+ssh://git@github.com/mozilla/source-map.git" 208 }, 63 209 "scripts": { 210 "build": "webpack --color", 64 211 "test": "npm run build && node test/run-tests.js", 65 "build": "webpack --color",66 212 "toc": "doctoc --title '## Table of Contents' README.md && doctoc --title '## Table of Contents' CONTRIBUTING.md" 67 213 }, 68 "devDependencies": { 69 "doctoc": "^0.15.0", 70 "webpack": "^1.12.0" 71 }, 72 "typings": "source-map" 214 "typings": "source-map", 215 "version": "0.6.1" 73 216 } -
trip-planner-front/node_modules/postcss-dir-pseudo-class/package.json
rceaed42 r59329aa 1 1 { 2 "name": "postcss-dir-pseudo-class", 3 "version": "5.0.0", 4 "description": "Use the :dir pseudo-class in CSS", 5 "author": "Jonathan Neal <jonathantneal@hotmail.com>", 6 "license": "CC0-1.0", 7 "repository": "jonathantneal/postcss-dir-pseudo-class", 8 "homepage": "https://github.com/jonathantneal/postcss-dir-pseudo-class#readme", 9 "bugs": "https://github.com/jonathantneal/postcss-dir-pseudo-class/issues", 10 "main": "index.cjs.js", 11 "module": "index.es.mjs", 12 "files": [ 13 "index.cjs.js", 14 "index.cjs.js.map", 15 "index.es.mjs", 16 "index.es.mjs.map" 2 "_args": [ 3 [ 4 "postcss-dir-pseudo-class@5.0.0", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 17 7 ], 18 "scripts": { 19 "prepublishOnly": "npm test", 20 "pretest": "rollup -c .rollup.js --silent", 21 "test": "echo 'Running tests...'; npm run test:js && npm run test:tape", 22 "test:ec": "echint --ignore index.*.js test", 23 "test:js": "eslint *.js --cache --ignore-path .gitignore --quiet", 24 "test:tape": "postcss-tape" 8 "_development": true, 9 "_from": "postcss-dir-pseudo-class@5.0.0", 10 "_id": "postcss-dir-pseudo-class@5.0.0", 11 "_inBundle": false, 12 "_integrity": "sha512-3pm4oq8HYWMZePJY+5ANriPs3P07q+LW6FAdTlkFH2XqDdP4HeeJYMOzn0HYLhRSjBO3fhiqSwwU9xEULSrPgw==", 13 "_location": "/postcss-dir-pseudo-class", 14 "_phantomChildren": { 15 "indexes-of": "1.0.1", 16 "picocolors": "0.2.1", 17 "uniq": "1.0.1" 25 18 }, 26 "engines": { 27 "node": ">=4.0.0" 19 "_requested": { 20 "type": "version", 21 "registry": true, 22 "raw": "postcss-dir-pseudo-class@5.0.0", 23 "name": "postcss-dir-pseudo-class", 24 "escapedName": "postcss-dir-pseudo-class", 25 "rawSpec": "5.0.0", 26 "saveSpec": null, 27 "fetchSpec": "5.0.0" 28 }, 29 "_requiredBy": [ 30 "/postcss-preset-env" 31 ], 32 "_resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-5.0.0.tgz", 33 "_spec": "5.0.0", 34 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 35 "author": { 36 "name": "Jonathan Neal", 37 "email": "jonathantneal@hotmail.com" 38 }, 39 "bugs": { 40 "url": "https://github.com/jonathantneal/postcss-dir-pseudo-class/issues" 28 41 }, 29 42 "dependencies": { … … 31 44 "postcss-selector-parser": "^5.0.0-rc.3" 32 45 }, 46 "description": "Use the :dir pseudo-class in CSS", 33 47 "devDependencies": { 34 48 "@babel/core": "^7.0.0", … … 41 55 "rollup": "^0.66.0", 42 56 "rollup-plugin-babel": "^4.0.1" 57 }, 58 "engines": { 59 "node": ">=4.0.0" 43 60 }, 44 61 "eslintConfig": { … … 54 71 } 55 72 }, 73 "files": [ 74 "index.cjs.js", 75 "index.cjs.js.map", 76 "index.es.mjs", 77 "index.es.mjs.map" 78 ], 79 "homepage": "https://github.com/jonathantneal/postcss-dir-pseudo-class#readme", 56 80 "keywords": [ 57 81 "postcss", … … 69 93 "right-to-left", 70 94 "rtl" 71 ] 95 ], 96 "license": "CC0-1.0", 97 "main": "index.cjs.js", 98 "module": "index.es.mjs", 99 "name": "postcss-dir-pseudo-class", 100 "repository": { 101 "type": "git", 102 "url": "git+https://github.com/jonathantneal/postcss-dir-pseudo-class.git" 103 }, 104 "scripts": { 105 "prepublishOnly": "npm test", 106 "pretest": "rollup -c .rollup.js --silent", 107 "test": "echo 'Running tests...'; npm run test:js && npm run test:tape", 108 "test:ec": "echint --ignore index.*.js test", 109 "test:js": "eslint *.js --cache --ignore-path .gitignore --quiet", 110 "test:tape": "postcss-tape" 111 }, 112 "version": "5.0.0" 72 113 }
Note:
See TracChangeset
for help on using the changeset viewer.