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/define-properties/package.json

    rceaed42 r59329aa  
    11{
    2         "name": "define-properties",
    3         "version": "1.1.3",
    4         "author": "Jordan Harband",
    5         "description": "Define multiple non-enumerable properties at once. Uses `Object.defineProperty` when available; falls back to standard assignment in older engines.",
    6         "license": "MIT",
    7         "main": "index.js",
    8         "scripts": {
    9                 "pretest": "npm run --silent lint",
    10                 "test": "npm run --silent tests-only",
    11                 "posttest": "npm run --silent security",
    12                 "tests-only": "node test/index.js",
    13                 "coverage": "covert test/*.js",
    14                 "coverage-quiet": "covert test/*.js --quiet",
    15                 "lint": "npm run --silent jscs && npm run --silent eslint",
    16                 "jscs": "jscs test/*.js *.js",
    17                 "eslint": "eslint test/*.js *.js",
    18                 "security": "nsp check"
    19         },
    20         "repository": {
    21                 "type": "git",
    22                 "url": "git://github.com/ljharb/define-properties.git"
    23         },
    24         "keywords": [
    25                 "Object.defineProperty",
    26                 "Object.defineProperties",
    27                 "object",
    28                 "property descriptor",
    29                 "descriptor",
    30                 "define",
    31                 "ES5"
    32         ],
    33         "dependencies": {
    34                 "object-keys": "^1.0.12"
    35         },
    36         "devDependencies": {
    37                 "@ljharb/eslint-config": "^13.0.0",
    38                 "covert": "^1.1.0",
    39                 "eslint": "^5.3.0",
    40                 "jscs": "^3.0.7",
    41                 "nsp": "^3.2.1",
    42                 "tape": "^4.9.0"
    43         },
    44         "testling": {
    45                 "files": "test/index.js",
    46                 "browsers": [
    47                         "iexplore/6.0..latest",
    48                         "firefox/3.0..6.0",
    49                         "firefox/15.0..latest",
    50                         "firefox/nightly",
    51                         "chrome/4.0..10.0",
    52                         "chrome/20.0..latest",
    53                         "chrome/canary",
    54                         "opera/10.0..latest",
    55                         "opera/next",
    56                         "safari/4.0..latest",
    57                         "ipad/6.0..latest",
    58                         "iphone/6.0..latest",
    59                         "android-browser/4.2"
    60                 ]
    61         },
    62         "engines": {
    63                 "node": ">= 0.4"
    64         }
     2  "_args": [
     3    [
     4      "define-properties@1.1.3",
     5      "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front"
     6    ]
     7  ],
     8  "_development": true,
     9  "_from": "define-properties@1.1.3",
     10  "_id": "define-properties@1.1.3",
     11  "_inBundle": false,
     12  "_integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==",
     13  "_location": "/define-properties",
     14  "_phantomChildren": {},
     15  "_requested": {
     16    "type": "version",
     17    "registry": true,
     18    "raw": "define-properties@1.1.3",
     19    "name": "define-properties",
     20    "escapedName": "define-properties",
     21    "rawSpec": "1.1.3",
     22    "saveSpec": null,
     23    "fetchSpec": "1.1.3"
     24  },
     25  "_requiredBy": [
     26    "/object-is",
     27    "/object.assign",
     28    "/regexp.prototype.flags"
     29  ],
     30  "_resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz",
     31  "_spec": "1.1.3",
     32  "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front",
     33  "author": {
     34    "name": "Jordan Harband"
     35  },
     36  "bugs": {
     37    "url": "https://github.com/ljharb/define-properties/issues"
     38  },
     39  "dependencies": {
     40    "object-keys": "^1.0.12"
     41  },
     42  "description": "Define multiple non-enumerable properties at once. Uses `Object.defineProperty` when available; falls back to standard assignment in older engines.",
     43  "devDependencies": {
     44    "@ljharb/eslint-config": "^13.0.0",
     45    "covert": "^1.1.0",
     46    "eslint": "^5.3.0",
     47    "jscs": "^3.0.7",
     48    "nsp": "^3.2.1",
     49    "tape": "^4.9.0"
     50  },
     51  "engines": {
     52    "node": ">= 0.4"
     53  },
     54  "homepage": "https://github.com/ljharb/define-properties#readme",
     55  "keywords": [
     56    "Object.defineProperty",
     57    "Object.defineProperties",
     58    "object",
     59    "property descriptor",
     60    "descriptor",
     61    "define",
     62    "ES5"
     63  ],
     64  "license": "MIT",
     65  "main": "index.js",
     66  "name": "define-properties",
     67  "repository": {
     68    "type": "git",
     69    "url": "git://github.com/ljharb/define-properties.git"
     70  },
     71  "scripts": {
     72    "coverage": "covert test/*.js",
     73    "coverage-quiet": "covert test/*.js --quiet",
     74    "eslint": "eslint test/*.js *.js",
     75    "jscs": "jscs test/*.js *.js",
     76    "lint": "npm run --silent jscs && npm run --silent eslint",
     77    "posttest": "npm run --silent security",
     78    "pretest": "npm run --silent lint",
     79    "security": "nsp check",
     80    "test": "npm run --silent tests-only",
     81    "tests-only": "node test/index.js"
     82  },
     83  "testling": {
     84    "files": "test/index.js",
     85    "browsers": [
     86      "iexplore/6.0..latest",
     87      "firefox/3.0..6.0",
     88      "firefox/15.0..latest",
     89      "firefox/nightly",
     90      "chrome/4.0..10.0",
     91      "chrome/20.0..latest",
     92      "chrome/canary",
     93      "opera/10.0..latest",
     94      "opera/next",
     95      "safari/4.0..latest",
     96      "ipad/6.0..latest",
     97      "iphone/6.0..latest",
     98      "android-browser/4.2"
     99    ]
     100  },
     101  "version": "1.1.3"
    65102}
Note: See TracChangeset for help on using the changeset viewer.