[6a3a178] | 1 | {
|
---|
[59329aa] | 2 | "_args": [
|
---|
| 3 | [
|
---|
| 4 | "readdirp@3.6.0",
|
---|
| 5 | "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front"
|
---|
| 6 | ]
|
---|
| 7 | ],
|
---|
| 8 | "_development": true,
|
---|
| 9 | "_from": "readdirp@3.6.0",
|
---|
| 10 | "_id": "readdirp@3.6.0",
|
---|
| 11 | "_inBundle": false,
|
---|
| 12 | "_integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
|
---|
| 13 | "_location": "/readdirp",
|
---|
| 14 | "_phantomChildren": {},
|
---|
| 15 | "_requested": {
|
---|
| 16 | "type": "version",
|
---|
| 17 | "registry": true,
|
---|
| 18 | "raw": "readdirp@3.6.0",
|
---|
| 19 | "name": "readdirp",
|
---|
| 20 | "escapedName": "readdirp",
|
---|
| 21 | "rawSpec": "3.6.0",
|
---|
| 22 | "saveSpec": null,
|
---|
| 23 | "fetchSpec": "3.6.0"
|
---|
| 24 | },
|
---|
| 25 | "_requiredBy": [
|
---|
| 26 | "/chokidar"
|
---|
| 27 | ],
|
---|
| 28 | "_resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
|
---|
| 29 | "_spec": "3.6.0",
|
---|
| 30 | "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front",
|
---|
| 31 | "author": {
|
---|
| 32 | "name": "Thorsten Lorenz",
|
---|
| 33 | "email": "thlorenz@gmx.de",
|
---|
| 34 | "url": "thlorenz.com"
|
---|
[6a3a178] | 35 | },
|
---|
| 36 | "bugs": {
|
---|
| 37 | "url": "https://github.com/paulmillr/readdirp/issues"
|
---|
| 38 | },
|
---|
| 39 | "contributors": [
|
---|
[59329aa] | 40 | {
|
---|
| 41 | "name": "Thorsten Lorenz",
|
---|
| 42 | "email": "thlorenz@gmx.de",
|
---|
| 43 | "url": "thlorenz.com"
|
---|
| 44 | },
|
---|
| 45 | {
|
---|
| 46 | "name": "Paul Miller",
|
---|
| 47 | "url": "https://paulmillr.com"
|
---|
| 48 | }
|
---|
[6a3a178] | 49 | ],
|
---|
| 50 | "dependencies": {
|
---|
| 51 | "picomatch": "^2.2.1"
|
---|
| 52 | },
|
---|
[59329aa] | 53 | "description": "Recursive version of fs.readdir with streaming API.",
|
---|
[6a3a178] | 54 | "devDependencies": {
|
---|
| 55 | "@types/node": "^14",
|
---|
| 56 | "chai": "^4.2",
|
---|
| 57 | "chai-subset": "^1.6",
|
---|
| 58 | "dtslint": "^3.3.0",
|
---|
| 59 | "eslint": "^7.0.0",
|
---|
| 60 | "mocha": "^7.1.1",
|
---|
| 61 | "nyc": "^15.0.0",
|
---|
| 62 | "rimraf": "^3.0.0",
|
---|
| 63 | "typescript": "^4.0.3"
|
---|
| 64 | },
|
---|
[59329aa] | 65 | "engines": {
|
---|
| 66 | "node": ">=8.10.0"
|
---|
[6a3a178] | 67 | },
|
---|
| 68 | "eslintConfig": {
|
---|
| 69 | "root": true,
|
---|
| 70 | "extends": "eslint:recommended",
|
---|
| 71 | "parserOptions": {
|
---|
| 72 | "ecmaVersion": 9,
|
---|
| 73 | "sourceType": "script"
|
---|
| 74 | },
|
---|
| 75 | "env": {
|
---|
| 76 | "node": true,
|
---|
| 77 | "es6": true
|
---|
| 78 | },
|
---|
| 79 | "rules": {
|
---|
| 80 | "array-callback-return": "error",
|
---|
| 81 | "no-empty": [
|
---|
| 82 | "error",
|
---|
| 83 | {
|
---|
| 84 | "allowEmptyCatch": true
|
---|
| 85 | }
|
---|
| 86 | ],
|
---|
| 87 | "no-else-return": [
|
---|
| 88 | "error",
|
---|
| 89 | {
|
---|
| 90 | "allowElseIf": false
|
---|
| 91 | }
|
---|
| 92 | ],
|
---|
| 93 | "no-lonely-if": "error",
|
---|
| 94 | "no-var": "error",
|
---|
| 95 | "object-shorthand": "error",
|
---|
| 96 | "prefer-arrow-callback": [
|
---|
| 97 | "error",
|
---|
| 98 | {
|
---|
| 99 | "allowNamedFunctions": true
|
---|
| 100 | }
|
---|
| 101 | ],
|
---|
| 102 | "prefer-const": [
|
---|
| 103 | "error",
|
---|
| 104 | {
|
---|
| 105 | "ignoreReadBeforeAssign": true
|
---|
| 106 | }
|
---|
| 107 | ],
|
---|
| 108 | "prefer-destructuring": [
|
---|
| 109 | "error",
|
---|
| 110 | {
|
---|
| 111 | "object": true,
|
---|
| 112 | "array": false
|
---|
| 113 | }
|
---|
| 114 | ],
|
---|
| 115 | "prefer-spread": "error",
|
---|
| 116 | "prefer-template": "error",
|
---|
| 117 | "radix": "error",
|
---|
| 118 | "semi": "error",
|
---|
| 119 | "strict": "error",
|
---|
| 120 | "quotes": [
|
---|
| 121 | "error",
|
---|
| 122 | "single"
|
---|
| 123 | ]
|
---|
| 124 | }
|
---|
[59329aa] | 125 | },
|
---|
| 126 | "files": [
|
---|
| 127 | "index.js",
|
---|
| 128 | "index.d.ts"
|
---|
| 129 | ],
|
---|
| 130 | "homepage": "https://github.com/paulmillr/readdirp",
|
---|
| 131 | "keywords": [
|
---|
| 132 | "recursive",
|
---|
| 133 | "fs",
|
---|
| 134 | "stream",
|
---|
| 135 | "streams",
|
---|
| 136 | "readdir",
|
---|
| 137 | "filesystem",
|
---|
| 138 | "find",
|
---|
| 139 | "filter"
|
---|
| 140 | ],
|
---|
| 141 | "license": "MIT",
|
---|
| 142 | "main": "index.js",
|
---|
| 143 | "name": "readdirp",
|
---|
| 144 | "nyc": {
|
---|
| 145 | "reporter": [
|
---|
| 146 | "html",
|
---|
| 147 | "text"
|
---|
| 148 | ]
|
---|
| 149 | },
|
---|
| 150 | "repository": {
|
---|
| 151 | "type": "git",
|
---|
| 152 | "url": "git://github.com/paulmillr/readdirp.git"
|
---|
| 153 | },
|
---|
| 154 | "scripts": {
|
---|
| 155 | "dtslint": "dtslint",
|
---|
| 156 | "lint": "eslint --report-unused-disable-directives --ignore-path .gitignore .",
|
---|
| 157 | "mocha": "mocha --exit",
|
---|
| 158 | "nyc": "nyc",
|
---|
| 159 | "test": "npm run lint && nyc npm run mocha"
|
---|
| 160 | },
|
---|
| 161 | "version": "3.6.0"
|
---|
[6a3a178] | 162 | }
|
---|