Ignore:
Timestamp:
01/21/25 03:08:24 (3 days ago)
Author:
stefan toskovski <stefantoska84@…>
Branches:
main
Parents:
0c6b92a
Message:

F4 Finalna Verzija

Location:
imaps-frontend/node_modules/is-data-view
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • imaps-frontend/node_modules/is-data-view/CHANGELOG.md

    r0c6b92a r79a0317  
    55The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
    66and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
     7
     8## [v1.0.2](https://github.com/inspect-js/is-data-view/compare/v1.0.1...v1.0.2) - 2024-12-11
     9
     10### Commits
     11
     12- [types] use shared config [`3a80072`](https://github.com/inspect-js/is-data-view/commit/3a800720dd322ea4656f29d28f1d28117fb94537)
     13- [actions] split out node 10-20, and 20+ [`e2f37fd`](https://github.com/inspect-js/is-data-view/commit/e2f37fdf421c4629730406c2b61d5481dce4e448)
     14- [Dev Deps] update `@ljharb/eslint-config`, `@ljharb/tsconfig`, `@types/node`, `@types/object-inspect`, `@types/tape`, `auto-changelog`, `es-value-fixtures`, `object-inspect`, `tape` [`6f8e9dd`](https://github.com/inspect-js/is-data-view/commit/6f8e9dda376e421d30dd94e891bea3fbae7967ee)
     15- [Dev Deps] update `@types/node`, `available-typed-arrays`, `tape` [`37be591`](https://github.com/inspect-js/is-data-view/commit/37be59163c8df9abb016bbb4c7d76f3af549f1d2)
     16- [Fix] add missing dependencies; use `call-bound` directly [`34de4b5`](https://github.com/inspect-js/is-data-view/commit/34de4b5f5448ca1bb95c34686c51b5351904a317)
     17- [Tests] replace `aud` with `npm audit` [`aa7060a`](https://github.com/inspect-js/is-data-view/commit/aa7060ad77c9ba2d500b124b73662c3b069fc721)
     18- [Dev Deps] add missing peer dep [`3d302d7`](https://github.com/inspect-js/is-data-view/commit/3d302d7dbf99d75fcf4a3de14687e423ec88728f)
    719
    820## [v1.0.1](https://github.com/inspect-js/is-data-view/compare/v1.0.0...v1.0.1) - 2024-02-02
  • imaps-frontend/node_modules/is-data-view/index.js

    r0c6b92a r79a0317  
    66var $DataView = GetIntrinsic('%DataView%', true);
    77
    8 var callBound = require('call-bind/callBound');
     8var callBound = require('call-bound');
    99
    1010// node <= 0.10, < 0.11.4 has a nonconfigurable own property instead of a prototype getter
  • imaps-frontend/node_modules/is-data-view/package.json

    r0c6b92a r79a0317  
    11{
    2         "name": "is-data-view",
    3         "version": "1.0.1",
    4         "description": "Is this value a JS DataView? This module works cross-realm/iframe, does not depend on `instanceof` or mutable properties, and despite ES6 Symbol.toStringTag.",
    5         "main": "index.js",
    6         "exports": {
    7                 ".": "./index.js",
    8                 "./package.json": "./package.json"
    9         },
    10         "types": "./index.d.ts",
    11         "scripts": {
    12                 "prepack": "npmignore --auto --commentLines=autogenerated",
    13                 "prepublishOnly": "safe-publish-latest",
    14                 "prepublish": "not-in-publish || npm run prepublishOnly",
    15                 "prelint": "evalmd README.md",
    16                 "lint": "eslint --ext=js,mjs .",
    17                 "postlint": "tsc -p .",
    18                 "pretest": "npm run lint",
    19                 "tests-only": "nyc tape 'test/**/*.js'",
    20                 "test": "npm run tests-only",
    21                 "posttest": "aud --production",
    22                 "version": "auto-changelog && git add CHANGELOG.md",
    23                 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
    24         },
    25         "funding": {
    26                 "url": "https://github.com/sponsors/ljharb"
    27         },
    28         "repository": {
    29                 "type": "git",
    30                 "url": "git+https://github.com/inspect-js/is-data-view.git"
    31         },
    32         "keywords": [
    33                 "javascript",
    34                 "ecmascript",
    35                 "dataview",
    36                 "data",
    37                 "view",
    38                 "typedarray",
    39                 "typedarrays"
    40         ],
    41         "author": "Jordan Harband <ljharb@gmail.com>",
    42         "license": "MIT",
    43         "bugs": {
    44                 "url": "https://github.com/inspect-js/is-data-view/issues"
    45         },
    46         "homepage": "https://github.com/inspect-js/is-data-view#readme",
    47         "dependencies": {
    48                 "is-typed-array": "^1.1.13"
    49         },
    50         "devDependencies": {
    51                 "@ljharb/eslint-config": "^21.1.0",
    52                 "@types/call-bind": "^1.0.5",
    53                 "@types/es-value-fixtures": "^1.4.4",
    54                 "@types/for-each": "^0.3.3",
    55                 "@types/make-arrow-function": "^1.2.2",
    56                 "@types/make-generator-function": "^2.0.3",
    57                 "@types/node": "^20.11.14",
    58                 "@types/object-inspect": "^1.8.4",
    59                 "@types/tape": "^5.6.4",
    60                 "aud": "^2.0.4",
    61                 "auto-changelog": "^2.4.0",
    62                 "available-typed-arrays": "^1.0.6",
    63                 "es-value-fixtures": "^1.4.2",
    64                 "eslint": "=8.8.0",
    65                 "evalmd": "^0.0.19",
    66                 "for-each": "^0.3.3",
    67                 "has-tostringtag": "^1.0.2",
    68                 "in-publish": "^2.0.1",
    69                 "make-arrow-function": "^1.2.0",
    70                 "make-generator-function": "^2.0.0",
    71                 "npmignore": "^0.3.1",
    72                 "nyc": "^10.3.2",
    73                 "object-inspect": "^1.13.1",
    74                 "safe-publish-latest": "^2.0.0",
    75                 "tape": "^5.7.4",
    76                 "typescript": "next"
    77         },
    78         "testling": {
    79                 "files": "test/index.js"
    80         },
    81         "engines": {
    82                 "node": ">= 0.4"
    83         },
    84         "auto-changelog": {
    85                 "output": "CHANGELOG.md",
    86                 "template": "keepachangelog",
    87                 "unreleased": false,
    88                 "commitLimit": false,
    89                 "backfillLimit": false,
    90                 "hideCredit": true
    91         },
    92         "publishConfig": {
    93                 "ignore": [
    94                         ".github/workflows"
    95                 ]
    96         }
     2  "_from": "is-data-view@^1.0.2",
     3  "_id": "is-data-view@1.0.2",
     4  "_inBundle": false,
     5  "_integrity": "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==",
     6  "_location": "/is-data-view",
     7  "_phantomChildren": {},
     8  "_requested": {
     9    "type": "range",
     10    "registry": true,
     11    "raw": "is-data-view@^1.0.2",
     12    "name": "is-data-view",
     13    "escapedName": "is-data-view",
     14    "rawSpec": "^1.0.2",
     15    "saveSpec": null,
     16    "fetchSpec": "^1.0.2"
     17  },
     18  "_requiredBy": [
     19    "/data-view-buffer",
     20    "/data-view-byte-length",
     21    "/data-view-byte-offset",
     22    "/es-abstract"
     23  ],
     24  "_resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.2.tgz",
     25  "_shasum": "bae0a41b9688986c2188dda6657e56b8f9e63b8e",
     26  "_spec": "is-data-view@^1.0.2",
     27  "_where": "/home/stevetosak/Proekt/IMaps/imaps-frontend/node_modules/es-abstract",
     28  "author": {
     29    "name": "Jordan Harband",
     30    "email": "ljharb@gmail.com"
     31  },
     32  "auto-changelog": {
     33    "output": "CHANGELOG.md",
     34    "template": "keepachangelog",
     35    "unreleased": false,
     36    "commitLimit": false,
     37    "backfillLimit": false,
     38    "hideCredit": true
     39  },
     40  "bugs": {
     41    "url": "https://github.com/inspect-js/is-data-view/issues"
     42  },
     43  "bundleDependencies": false,
     44  "dependencies": {
     45    "call-bound": "^1.0.2",
     46    "get-intrinsic": "^1.2.6",
     47    "is-typed-array": "^1.1.13"
     48  },
     49  "deprecated": false,
     50  "description": "Is this value a JS DataView? This module works cross-realm/iframe, does not depend on `instanceof` or mutable properties, and despite ES6 Symbol.toStringTag.",
     51  "devDependencies": {
     52    "@ljharb/eslint-config": "^21.1.1",
     53    "@ljharb/tsconfig": "^0.2.2",
     54    "@types/call-bind": "^1.0.5",
     55    "@types/es-value-fixtures": "^1.4.4",
     56    "@types/for-each": "^0.3.3",
     57    "@types/make-arrow-function": "^1.2.2",
     58    "@types/make-generator-function": "^2.0.3",
     59    "@types/node": "^20.17.10",
     60    "@types/object-inspect": "^1.13.0",
     61    "@types/tape": "^5.6.5",
     62    "auto-changelog": "^2.5.0",
     63    "available-typed-arrays": "^1.0.7",
     64    "encoding": "^0.1.13",
     65    "es-value-fixtures": "^1.5.0",
     66    "eslint": "=8.8.0",
     67    "evalmd": "^0.0.19",
     68    "for-each": "^0.3.3",
     69    "has-tostringtag": "^1.0.2",
     70    "in-publish": "^2.0.1",
     71    "make-arrow-function": "^1.2.0",
     72    "make-generator-function": "^2.0.0",
     73    "npmignore": "^0.3.1",
     74    "nyc": "^10.3.2",
     75    "object-inspect": "^1.13.3",
     76    "safe-publish-latest": "^2.0.0",
     77    "tape": "^5.9.0",
     78    "typescript": "next"
     79  },
     80  "engines": {
     81    "node": ">= 0.4"
     82  },
     83  "exports": {
     84    ".": "./index.js",
     85    "./package.json": "./package.json"
     86  },
     87  "funding": {
     88    "url": "https://github.com/sponsors/ljharb"
     89  },
     90  "homepage": "https://github.com/inspect-js/is-data-view#readme",
     91  "keywords": [
     92    "javascript",
     93    "ecmascript",
     94    "dataview",
     95    "data",
     96    "view",
     97    "typedarray",
     98    "typedarrays"
     99  ],
     100  "license": "MIT",
     101  "main": "index.js",
     102  "name": "is-data-view",
     103  "publishConfig": {
     104    "ignore": [
     105      ".github/workflows"
     106    ]
     107  },
     108  "repository": {
     109    "type": "git",
     110    "url": "git+https://github.com/inspect-js/is-data-view.git"
     111  },
     112  "scripts": {
     113    "lint": "eslint --ext=js,mjs .",
     114    "postlint": "tsc -p .",
     115    "posttest": "npx npm@'>= 10.2' audit --production",
     116    "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"",
     117    "prelint": "evalmd README.md",
     118    "prepack": "npmignore --auto --commentLines=autogenerated",
     119    "prepublish": "not-in-publish || npm run prepublishOnly",
     120    "prepublishOnly": "safe-publish-latest",
     121    "pretest": "npm run lint",
     122    "test": "npm run tests-only",
     123    "tests-only": "nyc tape 'test/**/*.js'",
     124    "version": "auto-changelog && git add CHANGELOG.md"
     125  },
     126  "testling": {
     127    "files": "test/index.js"
     128  },
     129  "types": "./index.d.ts",
     130  "version": "1.0.2"
    97131}
  • imaps-frontend/node_modules/is-data-view/tsconfig.json

    r0c6b92a r79a0317  
    11{
    2   "compilerOptions": {
    3     /* Visit https://aka.ms/tsconfig to read more about this file */
    4 
    5     /* Projects */
    6 
    7     /* Language and Environment */
    8     "target": "ESNext",                                  /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
    9     // "lib": [],                                        /* Specify a set of bundled library declaration files that describe the target runtime environment. */
    10     // "noLib": true,                                    /* Disable including any library files, including the default lib.d.ts. */
    11     "useDefineForClassFields": true,                     /* Emit ECMAScript-standard-compliant class fields. */
    12     // "moduleDetection": "auto",                        /* Control what method is used to detect module-format JS files. */
    13 
    14     /* Modules */
    15     "module": "commonjs",                                /* Specify what module code is generated. */
    16     // "rootDir": "./",                                  /* Specify the root folder within your source files. */
    17     // "moduleResolution": "node10",                     /* Specify how TypeScript looks up a file from a given module specifier. */
    18     // "baseUrl": "./",                                  /* Specify the base directory to resolve non-relative module names. */
    19     // "paths": {},                                      /* Specify a set of entries that re-map imports to additional lookup locations. */
    20     // "rootDirs": [],                                   /* Allow multiple folders to be treated as one when resolving modules. */
    21     "typeRoots": ["types"],                              /* Specify multiple folders that act like './node_modules/@types'. */
    22     "resolveJsonModule": true,                           /* Enable importing .json files. */
    23     // "allowArbitraryExtensions": true,                 /* Enable importing files with any extension, provided a declaration file is present. */
    24 
    25     /* JavaScript Support */
    26     "allowJs": true,                                     /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */
    27     "checkJs": true,                                     /* Enable error reporting in type-checked JavaScript files. */
    28     "maxNodeModuleJsDepth": 0,                           /* Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'. */
    29 
    30     /* Emit */
    31     "declaration": true,                                 /* Generate .d.ts files from TypeScript and JavaScript files in your project. */
    32     "declarationMap": true,                              /* Create sourcemaps for d.ts files. */
    33     "noEmit": true,                                      /* Disable emitting files from a compilation. */
    34 
    35     /* Interop Constraints */
    36     "allowSyntheticDefaultImports": true,                /* Allow 'import x from y' when a module doesn't have a default export. */
    37     "esModuleInterop": true,                             /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */
    38     "forceConsistentCasingInFileNames": true,            /* Ensure that casing is correct in imports. */
    39 
    40     /* Type Checking */
    41     "strict": true,                                      /* Enable all strict type-checking options. */
    42 
    43     /* Completeness */
    44     //"skipLibCheck": true                                 /* Skip type checking all .d.ts files. */
    45   },
    46   "exclude": [
    47     "coverage"
    48   ]
     2        "extends": "@ljharb/tsconfig",
     3        "compilerOptions": {
     4                "target": "ES2021",
     5        },
     6        "exclude": [
     7                "coverage",
     8        ],
    499}
Note: See TracChangeset for help on using the changeset viewer.