[d565449] | 1 | {
|
---|
[79a0317] | 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"
|
---|
| 21 | ],
|
---|
| 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"
|
---|
| 28 | },
|
---|
| 29 | "bugs": {
|
---|
| 30 | "url": "https://github.com/kaelzhang/node-ignore/issues"
|
---|
| 31 | },
|
---|
| 32 | "bundleDependencies": false,
|
---|
| 33 | "deprecated": false,
|
---|
[d565449] | 34 | "description": "Ignore is a manager and filter for .gitignore rules, the one used by eslint, gitbook and many others.",
|
---|
[79a0317] | 35 | "devDependencies": {
|
---|
| 36 | "@babel/cli": "^7.22.9",
|
---|
| 37 | "@babel/core": "^7.22.9",
|
---|
| 38 | "@babel/preset-env": "^7.22.9",
|
---|
| 39 | "codecov": "^3.8.2",
|
---|
| 40 | "debug": "^4.3.4",
|
---|
| 41 | "eslint": "^8.46.0",
|
---|
| 42 | "eslint-config-ostai": "^3.0.0",
|
---|
| 43 | "eslint-plugin-import": "^2.28.0",
|
---|
| 44 | "mkdirp": "^3.0.1",
|
---|
| 45 | "pre-suf": "^1.1.1",
|
---|
| 46 | "rimraf": "^6.0.1",
|
---|
| 47 | "spawn-sync": "^2.0.0",
|
---|
| 48 | "tap": "^16.3.9",
|
---|
| 49 | "tmp": "0.2.3",
|
---|
| 50 | "typescript": "^5.1.6"
|
---|
| 51 | },
|
---|
| 52 | "engines": {
|
---|
| 53 | "node": ">= 4"
|
---|
| 54 | },
|
---|
[d565449] | 55 | "files": [
|
---|
| 56 | "legacy.js",
|
---|
| 57 | "index.js",
|
---|
| 58 | "index.d.ts",
|
---|
| 59 | "LICENSE-MIT"
|
---|
| 60 | ],
|
---|
[79a0317] | 61 | "homepage": "https://github.com/kaelzhang/node-ignore#readme",
|
---|
[d565449] | 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",
|
---|
[79a0317] | 78 | "name": "ignore",
|
---|
| 79 | "repository": {
|
---|
| 80 | "type": "git",
|
---|
| 81 | "url": "git+ssh://git@github.com/kaelzhang/node-ignore.git"
|
---|
[d565449] | 82 | },
|
---|
[79a0317] | 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"
|
---|
[d565449] | 101 | },
|
---|
[79a0317] | 102 | "version": "5.3.2"
|
---|
[d565449] | 103 | }
|
---|