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

F4 Finalna Verzija

File:
1 edited

Legend:

Unmodified
Added
Removed
  • imaps-frontend/node_modules/ignore/package.json

    r0c6b92a r79a0317  
    11{
    2   "name": "ignore",
    3   "version": "5.3.2",
    4   "description": "Ignore is a manager and filter for .gitignore rules, the one used by eslint, gitbook and many others.",
    5   "files": [
    6     "legacy.js",
    7     "index.js",
    8     "index.d.ts",
    9     "LICENSE-MIT"
     2  "_from": "ignore@^5.2.0",
     3  "_id": "ignore@5.3.2",
     4  "_inBundle": false,
     5  "_integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==",
     6  "_location": "/ignore",
     7  "_phantomChildren": {},
     8  "_requested": {
     9    "type": "range",
     10    "registry": true,
     11    "raw": "ignore@^5.2.0",
     12    "name": "ignore",
     13    "escapedName": "ignore",
     14    "rawSpec": "^5.2.0",
     15    "saveSpec": null,
     16    "fetchSpec": "^5.2.0"
     17  },
     18  "_requiredBy": [
     19    "/@eslint/eslintrc",
     20    "/eslint"
    1021  ],
    11   "scripts": {
    12     "prepublishOnly": "npm run build",
    13     "build": "babel -o legacy.js index.js",
    14     "test:lint": "eslint .",
    15     "test:tsc": "tsc ./test/ts/simple.ts --lib ES6",
    16     "test:ts": "node ./test/ts/simple.js",
    17     "tap": "tap --reporter classic",
    18     "test:git": "npm run tap test/git-check-ignore.js",
    19     "test:ignore": "npm run tap test/ignore.js",
    20     "test:ignore:only": "IGNORE_ONLY_IGNORES=1 npm run tap test/ignore.js",
    21     "test:others": "npm run tap test/others.js",
    22     "test:cases": "npm run tap test/*.js -- --coverage",
    23     "test:no-coverage": "npm run tap test/*.js -- --no-check-coverage",
    24     "test:only": "npm run test:lint && npm run test:tsc && npm run test:ts && npm run test:cases",
    25     "test": "npm run test:only",
    26     "test:win32": "IGNORE_TEST_WIN32=1 npm run test",
    27     "report": "tap --coverage-report=html",
    28     "posttest": "npm run report && codecov"
     22  "_resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz",
     23  "_shasum": "3cd40e729f3643fd87cb04e50bf0eb722bc596f5",
     24  "_spec": "ignore@^5.2.0",
     25  "_where": "/home/stevetosak/Proekt/IMaps/imaps-frontend/node_modules/eslint",
     26  "author": {
     27    "name": "kael"
    2928  },
    30   "repository": {
    31     "type": "git",
    32     "url": "git@github.com:kaelzhang/node-ignore.git"
    33   },
    34   "keywords": [
    35     "ignore",
    36     ".gitignore",
    37     "gitignore",
    38     "npmignore",
    39     "rules",
    40     "manager",
    41     "filter",
    42     "regexp",
    43     "regex",
    44     "fnmatch",
    45     "glob",
    46     "asterisks",
    47     "regular-expression"
    48   ],
    49   "author": "kael",
    50   "license": "MIT",
    5129  "bugs": {
    5230    "url": "https://github.com/kaelzhang/node-ignore/issues"
    5331  },
     32  "bundleDependencies": false,
     33  "deprecated": false,
     34  "description": "Ignore is a manager and filter for .gitignore rules, the one used by eslint, gitbook and many others.",
    5435  "devDependencies": {
    5536    "@babel/cli": "^7.22.9",
     
    7152  "engines": {
    7253    "node": ">= 4"
    73   }
     54  },
     55  "files": [
     56    "legacy.js",
     57    "index.js",
     58    "index.d.ts",
     59    "LICENSE-MIT"
     60  ],
     61  "homepage": "https://github.com/kaelzhang/node-ignore#readme",
     62  "keywords": [
     63    "ignore",
     64    ".gitignore",
     65    "gitignore",
     66    "npmignore",
     67    "rules",
     68    "manager",
     69    "filter",
     70    "regexp",
     71    "regex",
     72    "fnmatch",
     73    "glob",
     74    "asterisks",
     75    "regular-expression"
     76  ],
     77  "license": "MIT",
     78  "name": "ignore",
     79  "repository": {
     80    "type": "git",
     81    "url": "git+ssh://git@github.com/kaelzhang/node-ignore.git"
     82  },
     83  "scripts": {
     84    "build": "babel -o legacy.js index.js",
     85    "posttest": "npm run report && codecov",
     86    "prepublishOnly": "npm run build",
     87    "report": "tap --coverage-report=html",
     88    "tap": "tap --reporter classic",
     89    "test": "npm run test:only",
     90    "test:cases": "npm run tap test/*.js -- --coverage",
     91    "test:git": "npm run tap test/git-check-ignore.js",
     92    "test:ignore": "npm run tap test/ignore.js",
     93    "test:ignore:only": "IGNORE_ONLY_IGNORES=1 npm run tap test/ignore.js",
     94    "test:lint": "eslint .",
     95    "test:no-coverage": "npm run tap test/*.js -- --no-check-coverage",
     96    "test:only": "npm run test:lint && npm run test:tsc && npm run test:ts && npm run test:cases",
     97    "test:others": "npm run tap test/others.js",
     98    "test:ts": "node ./test/ts/simple.js",
     99    "test:tsc": "tsc ./test/ts/simple.ts --lib ES6",
     100    "test:win32": "IGNORE_TEST_WIN32=1 npm run test"
     101  },
     102  "version": "5.3.2"
    74103}
Note: See TracChangeset for help on using the changeset viewer.