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/postcss-custom-selectors
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trip-planner-front/node_modules/postcss-custom-selectors/node_modules/.bin/cssesc

    rceaed42 r59329aa  
    77
    88if [ -x "$basedir/node" ]; then
    9   exec "$basedir/node"  "$basedir/../cssesc/bin/cssesc" "$@"
     9  "$basedir/node"  "$basedir/../cssesc/bin/cssesc" "$@"
     10  ret=$?
    1011else
    11   exec node  "$basedir/../cssesc/bin/cssesc" "$@"
     12  node  "$basedir/../cssesc/bin/cssesc" "$@"
     13  ret=$?
    1214fi
     15exit $ret
  • trip-planner-front/node_modules/postcss-custom-selectors/node_modules/.bin/cssesc.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%\..\cssesc\bin\cssesc" %*
     12"%_prog%"  "%dp0%\..\cssesc\bin\cssesc" %*
     13ENDLOCAL
     14EXIT /b %errorlevel%
     15:find_dp0
     16SET dp0=%~dp0
     17EXIT /b
  • trip-planner-front/node_modules/postcss-custom-selectors/node_modules/.bin/cssesc.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/../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
    1813  $ret=$LASTEXITCODE
    1914} 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
    2616  $ret=$LASTEXITCODE
    2717}
  • trip-planner-front/node_modules/postcss-custom-selectors/node_modules/cssesc/package.json

    rceaed42 r59329aa  
    11{
    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-custom-selectors/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"
    824  },
    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-custom-selectors/postcss-selector-parser"
    1827  ],
    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",
    2031  "author": {
    2132    "name": "Mathias Bynens",
    2233    "url": "https://mathiasbynens.be/"
    2334  },
    24   "repository": {
    25     "type": "git",
    26     "url": "https://github.com/mathiasbynens/cssesc.git"
     35  "bin": {
     36    "cssesc": "bin/cssesc"
    2737  },
    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"
    3940  },
     41  "description": "A JavaScript library for escaping CSS strings and identifiers while generating the shortest possible ASCII-only output.",
    4042  "devDependencies": {
    4143    "babel-cli": "^6.26.0",
     
    4850    "regenerate": "^1.2.1",
    4951    "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"
    5186}
  • trip-planner-front/node_modules/postcss-custom-selectors/node_modules/postcss-selector-parser/package.json

    rceaed42 r59329aa  
    11{
    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-custom-selectors/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-custom-selectors"
     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.",
    456  "devDependencies": {
    557    "ava": "^0.25.0",
     
    2476    "semver": "^5.6.0"
    2577  },
    26   "main": "dist/index.js",
    27   "types": "postcss-selector-parser.d.ts",
     78  "engines": {
     79    "node": ">=4"
     80  },
    2881  "files": [
    2982    "API.md",
     
    3386    "postcss-selector-parser.d.ts"
    3487  ],
    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",
    4889  "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",
    7092  "nyc": {
    7193    "exclude": [
     
    7395      "**/__tests__"
    7496    ]
    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"
    76112}
  • trip-planner-front/node_modules/postcss-custom-selectors/node_modules/postcss/package.json

    rceaed42 r59329aa  
    11{
    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-custom-selectors/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-custom-selectors"
     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  },
    446  "description": "Tool for transforming styles with JS plugins",
    547  "engines": {
    648    "node": ">=6.0.0"
    749  },
     50  "funding": {
     51    "type": "opencollective",
     52    "url": "https://opencollective.com/postcss/"
     53  },
     54  "homepage": "https://postcss.org/",
    855  "keywords": [
    956    "css",
     
    1764    "transpiler"
    1865  ],
    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"
    2272  },
    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",
    3273  "types": "lib/postcss.d.ts",
    33   "browser": {
    34     "./lib/terminal-highlight": false,
    35     "fs": false
    36   }
     74  "version": "7.0.39"
    3775}
  • trip-planner-front/node_modules/postcss-custom-selectors/node_modules/source-map/package.json

    rceaed42 r59329aa  
    11{
    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-custom-selectors/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-custom-selectors/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  ],
    3184  "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  },
    50192  "files": [
    51193    "source-map.js",
     
    57199    "dist/source-map.min.js.map"
    58200  ],
    59   "engines": {
    60     "node": ">=0.10.0"
    61   },
     201  "homepage": "https://github.com/mozilla/source-map",
    62202  "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  },
    63209  "scripts": {
     210    "build": "webpack --color",
    64211    "test": "npm run build && node test/run-tests.js",
    65     "build": "webpack --color",
    66212    "toc": "doctoc --title '## Table of Contents' README.md && doctoc --title '## Table of Contents' CONTRIBUTING.md"
    67213  },
    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"
    73216}
  • trip-planner-front/node_modules/postcss-custom-selectors/package.json

    rceaed42 r59329aa  
    11{
    2   "name": "postcss-custom-selectors",
    3   "version": "5.1.2",
    4   "description": "Use Custom Selectors in CSS",
    5   "author": "Jonathan Neal <jonathantneal@hotmail.com>",
     2  "_args": [
     3    [
     4      "postcss-custom-selectors@5.1.2",
     5      "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front"
     6    ]
     7  ],
     8  "_development": true,
     9  "_from": "postcss-custom-selectors@5.1.2",
     10  "_id": "postcss-custom-selectors@5.1.2",
     11  "_inBundle": false,
     12  "_integrity": "sha512-DSGDhqinCqXqlS4R7KGxL1OSycd1lydugJ1ky4iRXPHdBRiozyMHrdu0H3o7qNOCiZwySZTUI5MV0T8QhCLu+w==",
     13  "_location": "/postcss-custom-selectors",
     14  "_phantomChildren": {
     15    "indexes-of": "1.0.1",
     16    "picocolors": "0.2.1",
     17    "uniq": "1.0.1"
     18  },
     19  "_requested": {
     20    "type": "version",
     21    "registry": true,
     22    "raw": "postcss-custom-selectors@5.1.2",
     23    "name": "postcss-custom-selectors",
     24    "escapedName": "postcss-custom-selectors",
     25    "rawSpec": "5.1.2",
     26    "saveSpec": null,
     27    "fetchSpec": "5.1.2"
     28  },
     29  "_requiredBy": [
     30    "/postcss-preset-env"
     31  ],
     32  "_resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-5.1.2.tgz",
     33  "_spec": "5.1.2",
     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/postcss/postcss-custom-selectors/issues"
     41  },
    642  "contributors": [
    7     "yisi",
    8     "Maxime Thirouin"
     43    {
     44      "name": "yisi"
     45    },
     46    {
     47      "name": "Maxime Thirouin"
     48    }
    949  ],
    10   "license": "MIT",
    11   "repository": "postcss/postcss-custom-selectors",
    12   "homepage": "https://github.com/postcss/postcss-custom-selectors#readme",
    13   "bugs": "https://github.com/postcss/postcss-custom-selectors/issues",
    14   "main": "index.cjs.js",
    15   "module": "index.es.mjs",
    16   "files": [
    17     "index.cjs.js",
    18     "index.cjs.js.map",
    19     "index.es.mjs",
    20     "index.es.mjs.map"
    21   ],
    22   "scripts": {
    23     "prepublishOnly": "npm test",
    24     "pretest": "rollup -c .rollup.js --silent",
    25     "test": "echo 'Running tests...'; npm run test:js && npm run test:tape",
    26     "test:js": "eslint *.js lib/*.js --cache --ignore-path .gitignore --quiet",
    27     "test:tape": "postcss-tape"
    28   },
    29   "engines": {
    30     "node": ">=6.0.0"
    31   },
    3250  "dependencies": {
    3351    "postcss": "^7.0.2",
    3452    "postcss-selector-parser": "^5.0.0-rc.3"
    3553  },
     54  "description": "Use Custom Selectors in CSS",
    3655  "devDependencies": {
    3756    "@babel/core": "^7.1.0",
     
    4665    "rollup-plugin-babel": "^4.0.3"
    4766  },
     67  "engines": {
     68    "node": ">=6.0.0"
     69  },
    4870  "eslintConfig": {
    4971    "extends": "dev",
    5072    "parser": "babel-eslint"
    5173  },
     74  "files": [
     75    "index.cjs.js",
     76    "index.cjs.js.map",
     77    "index.es.mjs",
     78    "index.es.mjs.map"
     79  ],
     80  "homepage": "https://github.com/postcss/postcss-custom-selectors#readme",
    5281  "keywords": [
    5382    "postcss",
     
    6493    "at-rule",
    6594    "specification"
    66   ]
     95  ],
     96  "license": "MIT",
     97  "main": "index.cjs.js",
     98  "module": "index.es.mjs",
     99  "name": "postcss-custom-selectors",
     100  "repository": {
     101    "type": "git",
     102    "url": "git+https://github.com/postcss/postcss-custom-selectors.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:js": "eslint *.js lib/*.js --cache --ignore-path .gitignore --quiet",
     109    "test:tape": "postcss-tape"
     110  },
     111  "version": "5.1.2"
    67112}
Note: See TracChangeset for help on using the changeset viewer.