Ignore:
Timestamp:
11/23/21 14:58:44 (3 years ago)
Author:
Ema <ema_spirova@…>
Branches:
master
Children:
e29cc2e
Parents:
ceaed42
Message:

adding photos

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trip-planner-front/node_modules/object-keys/package.json

    rceaed42 r59329aa  
    11{
    2         "name": "object-keys",
    3         "version": "1.1.1",
    4         "author": {
    5                 "name": "Jordan Harband",
    6                 "email": "ljharb@gmail.com",
    7                 "url": "http://ljharb.codes"
    8         },
    9         "contributors": [
    10                 {
    11                         "name": "Jordan Harband",
    12                         "email": "ljharb@gmail.com",
    13                         "url": "http://ljharb.codes"
    14                 },
    15                 {
    16                         "name": "Raynos",
    17                         "email": "raynos2@gmail.com"
    18                 },
    19                 {
    20                         "name": "Nathan Rajlich",
    21                         "email": "nathan@tootallnate.net"
    22                 },
    23                 {
    24                         "name": "Ivan Starkov",
    25                         "email": "istarkov@gmail.com"
    26                 },
    27                 {
    28                         "name": "Gary Katsevman",
    29                         "email": "git@gkatsev.com"
    30                 }
    31         ],
    32         "description": "An Object.keys replacement, in case Object.keys is not available. From https://github.com/es-shims/es5-shim",
    33         "license": "MIT",
    34         "main": "index.js",
    35         "scripts": {
    36                 "pretest": "npm run --silent lint",
    37                 "test": "npm run --silent tests-only",
    38                 "posttest": "npm run --silent audit",
    39                 "tests-only": "node test/index.js",
    40                 "coverage": "covert test/*.js",
    41                 "coverage-quiet": "covert test/*.js --quiet",
    42                 "lint": "eslint .",
    43                 "preaudit": "npm install --package-lock --package-lock-only",
    44                 "audit": "npm audit",
    45                 "postaudit": "rm package-lock.json"
    46         },
    47         "repository": {
    48                 "type": "git",
    49                 "url": "git://github.com/ljharb/object-keys.git"
    50         },
    51         "keywords": [
    52                 "Object.keys",
    53                 "keys",
    54                 "ES5",
    55                 "shim"
    56         ],
    57         "dependencies": {},
    58         "devDependencies": {
    59                 "@ljharb/eslint-config": "^13.1.1",
    60                 "covert": "^1.1.1",
    61                 "eslint": "^5.13.0",
    62                 "foreach": "^2.0.5",
    63                 "indexof": "^0.0.1",
    64                 "is": "^3.3.0",
    65                 "tape": "^4.9.2"
    66         },
    67         "testling": {
    68                 "files": "test/index.js",
    69                 "browsers": [
    70                         "iexplore/6.0..latest",
    71                         "firefox/3.0..6.0",
    72                         "firefox/15.0..latest",
    73                         "firefox/nightly",
    74                         "chrome/4.0..10.0",
    75                         "chrome/20.0..latest",
    76                         "chrome/canary",
    77                         "opera/10.0..latest",
    78                         "opera/next",
    79                         "safari/4.0..latest",
    80                         "ipad/6.0..latest",
    81                         "iphone/6.0..latest",
    82                         "android-browser/4.2"
    83                 ]
    84         },
    85         "engines": {
    86                 "node": ">= 0.4"
    87         }
     2  "_args": [
     3    [
     4      "object-keys@1.1.1",
     5      "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front"
     6    ]
     7  ],
     8  "_development": true,
     9  "_from": "object-keys@1.1.1",
     10  "_id": "object-keys@1.1.1",
     11  "_inBundle": false,
     12  "_integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
     13  "_location": "/object-keys",
     14  "_phantomChildren": {},
     15  "_requested": {
     16    "type": "version",
     17    "registry": true,
     18    "raw": "object-keys@1.1.1",
     19    "name": "object-keys",
     20    "escapedName": "object-keys",
     21    "rawSpec": "1.1.1",
     22    "saveSpec": null,
     23    "fetchSpec": "1.1.1"
     24  },
     25  "_requiredBy": [
     26    "/deep-equal",
     27    "/define-properties",
     28    "/object.assign"
     29  ],
     30  "_resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
     31  "_spec": "1.1.1",
     32  "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front",
     33  "author": {
     34    "name": "Jordan Harband",
     35    "email": "ljharb@gmail.com",
     36    "url": "http://ljharb.codes"
     37  },
     38  "bugs": {
     39    "url": "https://github.com/ljharb/object-keys/issues"
     40  },
     41  "contributors": [
     42    {
     43      "name": "Jordan Harband",
     44      "email": "ljharb@gmail.com",
     45      "url": "http://ljharb.codes"
     46    },
     47    {
     48      "name": "Raynos",
     49      "email": "raynos2@gmail.com"
     50    },
     51    {
     52      "name": "Nathan Rajlich",
     53      "email": "nathan@tootallnate.net"
     54    },
     55    {
     56      "name": "Ivan Starkov",
     57      "email": "istarkov@gmail.com"
     58    },
     59    {
     60      "name": "Gary Katsevman",
     61      "email": "git@gkatsev.com"
     62    }
     63  ],
     64  "dependencies": {},
     65  "description": "An Object.keys replacement, in case Object.keys is not available. From https://github.com/es-shims/es5-shim",
     66  "devDependencies": {
     67    "@ljharb/eslint-config": "^13.1.1",
     68    "covert": "^1.1.1",
     69    "eslint": "^5.13.0",
     70    "foreach": "^2.0.5",
     71    "indexof": "^0.0.1",
     72    "is": "^3.3.0",
     73    "tape": "^4.9.2"
     74  },
     75  "engines": {
     76    "node": ">= 0.4"
     77  },
     78  "homepage": "https://github.com/ljharb/object-keys#readme",
     79  "keywords": [
     80    "Object.keys",
     81    "keys",
     82    "ES5",
     83    "shim"
     84  ],
     85  "license": "MIT",
     86  "main": "index.js",
     87  "name": "object-keys",
     88  "repository": {
     89    "type": "git",
     90    "url": "git://github.com/ljharb/object-keys.git"
     91  },
     92  "scripts": {
     93    "audit": "npm audit",
     94    "coverage": "covert test/*.js",
     95    "coverage-quiet": "covert test/*.js --quiet",
     96    "lint": "eslint .",
     97    "postaudit": "rm package-lock.json",
     98    "posttest": "npm run --silent audit",
     99    "preaudit": "npm install --package-lock --package-lock-only",
     100    "pretest": "npm run --silent lint",
     101    "test": "npm run --silent tests-only",
     102    "tests-only": "node test/index.js"
     103  },
     104  "testling": {
     105    "files": "test/index.js",
     106    "browsers": [
     107      "iexplore/6.0..latest",
     108      "firefox/3.0..6.0",
     109      "firefox/15.0..latest",
     110      "firefox/nightly",
     111      "chrome/4.0..10.0",
     112      "chrome/20.0..latest",
     113      "chrome/canary",
     114      "opera/10.0..latest",
     115      "opera/next",
     116      "safari/4.0..latest",
     117      "ipad/6.0..latest",
     118      "iphone/6.0..latest",
     119      "android-browser/4.2"
     120    ]
     121  },
     122  "version": "1.1.1"
    88123}
Note: See TracChangeset for help on using the changeset viewer.