Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/clinic.corals.io/node_modules/cosmiconfig/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/clinic.corals.io/node_modules/cosmiconfig/package.json
{
  "_args": [
    [
      "[email protected]",
      "/home/corals/clinic.corals.io"
    ]
  ],
  "_development": true,
  "_from": "[email protected]",
  "_id": "[email protected]",
  "_inBundle": false,
  "_integrity": "sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==",
  "_location": "/cosmiconfig",
  "_phantomChildren": {},
  "_requested": {
    "type": "version",
    "registry": true,
    "raw": "[email protected]",
    "name": "cosmiconfig",
    "escapedName": "cosmiconfig",
    "rawSpec": "7.0.0",
    "saveSpec": null,
    "fetchSpec": "7.0.0"
  },
  "_requiredBy": [
    "/postcss-loader"
  ],
  "_resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.0.tgz",
  "_spec": "7.0.0",
  "_where": "/home/corals/clinic.corals.io",
  "author": {
    "name": "David Clark",
    "email": "[email protected]"
  },
  "babel": {
    "presets": [
      [
        "@babel/preset-env",
        {
          "targets": {
            "node": "10"
          }
        }
      ],
      "@babel/preset-typescript"
    ]
  },
  "bugs": {
    "url": "https://github.com/davidtheclark/cosmiconfig/issues"
  },
  "contributors": [
    {
      "name": "Bogdan Chadkin",
      "email": "[email protected]"
    },
    {
      "name": "Suhas Karanth",
      "email": "[email protected]"
    }
  ],
  "dependencies": {
    "@types/parse-json": "^4.0.0",
    "import-fresh": "^3.2.1",
    "parse-json": "^5.0.0",
    "path-type": "^4.0.0",
    "yaml": "^1.10.0"
  },
  "description": "Find and load configuration from a package.json property, rc file, or CommonJS module",
  "devDependencies": {
    "@babel/cli": "^7.10.4",
    "@babel/core": "^7.10.4",
    "@babel/preset-env": "^7.10.4",
    "@babel/preset-typescript": "^7.10.4",
    "@types/jest": "^26.0.4",
    "@types/node": "^14.0.22",
    "@typescript-eslint/eslint-plugin": "^3.6.0",
    "@typescript-eslint/parser": "^3.6.0",
    "cross-env": "^7.0.2",
    "del": "^5.1.0",
    "del-cli": "^3.0.1",
    "eslint": "^7.4.0",
    "eslint-config-davidtheclark-node": "^0.2.2",
    "eslint-config-prettier": "^6.11.0",
    "eslint-plugin-import": "^2.22.0",
    "eslint-plugin-jest": "^23.18.0",
    "eslint-plugin-node": "^11.1.0",
    "husky": "^4.2.5",
    "jest": "^26.1.0",
    "lint-staged": "^10.2.11",
    "make-dir": "^3.1.0",
    "parent-module": "^2.0.0",
    "prettier": "^2.0.5",
    "remark-preset-davidtheclark": "^0.12.0",
    "typescript": "^3.9.6"
  },
  "engines": {
    "node": ">=10"
  },
  "files": [
    "dist"
  ],
  "homepage": "https://github.com/davidtheclark/cosmiconfig#readme",
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged && npm run typescript && npm run test",
      "pre-push": "npm run check:all"
    }
  },
  "jest": {
    "testEnvironment": "node",
    "collectCoverageFrom": [
      "src/**/*.{js,ts}"
    ],
    "coverageReporters": [
      "text",
      "html",
      "lcov"
    ],
    "coverageThreshold": {
      "global": {
        "branches": 100,
        "functions": 100,
        "lines": 100,
        "statements": 100
      }
    },
    "resetModules": true,
    "resetMocks": true,
    "restoreMocks": true
  },
  "keywords": [
    "load",
    "configuration",
    "config"
  ],
  "license": "MIT",
  "lint-staged": {
    "*.{js,ts}": [
      "eslint --fix",
      "prettier --write"
    ],
    "*.{json,yml,yaml}": [
      "prettier --write"
    ],
    "*.md": [
      "remark-preset-davidtheclark",
      "remark-preset-davidtheclark --format"
    ]
  },
  "main": "dist/index.js",
  "name": "cosmiconfig",
  "prettier": {
    "trailingComma": "all",
    "arrowParens": "always",
    "singleQuote": true,
    "printWidth": 80,
    "tabWidth": 2
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/davidtheclark/cosmiconfig.git"
  },
  "scripts": {
    "build": "npm run clean && npm run build:compile && npm run build:types",
    "build:compile": "cross-env NODE_ENV=production babel src -d dist --verbose --extensions .js,.ts --ignore \"**/**/*.test.js\",\"**/**/*.test.ts\" --source-maps",
    "build:types": "cross-env NODE_ENV=production tsc --project tsconfig.types.json",
    "check:all": "npm run test && npm run typescript && npm run lint && npm run format:check",
    "clean": "del-cli --dot=true \"./dist/**/*\"",
    "dev": "npm run clean && npm run build:compile -- --watch",
    "format": "prettier \"**/*.{js,ts,json,yml,yaml}\" --write",
    "format:check": "prettier \"**/*.{js,ts,json,yml,yaml}\" --check",
    "format:md": "remark-preset-davidtheclark --format",
    "lint": "eslint --ext .js,.ts . && npm run lint:md",
    "lint:fix": "eslint --ext .js,.ts . --fix",
    "lint:md": "remark-preset-davidtheclark",
    "prepublishOnly": "npm run check:all && npm run build",
    "test": "jest --coverage",
    "test:watch": "jest --watch",
    "typescript": "tsc"
  },
  "types": "dist/index.d.ts",
  "version": "7.0.0"
}

Spamworldpro Mini