Changeset 59329aa for trip-planner-front/node_modules/cosmiconfig
- Timestamp:
- 11/23/21 14:58:44 (3 years ago)
- Branches:
- master
- Children:
- e29cc2e
- Parents:
- ceaed42
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/node_modules/cosmiconfig/package.json
rceaed42 r59329aa 1 1 { 2 "name": "cosmiconfig", 3 "version": "7.0.1", 4 "description": "Find and load configuration from a package.json property, rc file, or CommonJS module", 5 "main": "dist/index.js", 6 "types": "dist/index.d.ts", 7 "files": [ 8 "dist" 2 "_args": [ 3 [ 4 "cosmiconfig@7.0.1", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 9 7 ], 10 "scripts": { 11 "clean": "del-cli --dot=true \"./dist/**/*\"", 12 "build": "npm run clean && npm run build:compile && npm run build:types", 13 "build:compile": "cross-env NODE_ENV=production babel src -d dist --verbose --extensions .js,.ts --ignore \"**/**/*.test.js\",\"**/**/*.test.ts\" --source-maps", 14 "build:types": "cross-env NODE_ENV=production tsc --project tsconfig.types.json", 15 "dev": "npm run clean && npm run build:compile -- --watch", 16 "lint": "eslint --ext .js,.ts . && npm run lint:md", 17 "lint:fix": "eslint --ext .js,.ts . --fix", 18 "lint:md": "remark-preset-davidtheclark", 19 "format": "prettier \"**/*.{js,ts,json,yml,yaml}\" --write", 20 "format:md": "remark-preset-davidtheclark --format", 21 "format:check": "prettier \"**/*.{js,ts,json,yml,yaml}\" --check", 22 "typescript": "tsc", 23 "test": "jest --coverage", 24 "test:watch": "jest --watch", 25 "check:all": "npm run test && npm run typescript && npm run lint && npm run format:check", 26 "prepublishOnly": "npm run check:all && npm run build" 8 "_development": true, 9 "_from": "cosmiconfig@7.0.1", 10 "_id": "cosmiconfig@7.0.1", 11 "_inBundle": false, 12 "_integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==", 13 "_location": "/cosmiconfig", 14 "_phantomChildren": {}, 15 "_requested": { 16 "type": "version", 17 "registry": true, 18 "raw": "cosmiconfig@7.0.1", 19 "name": "cosmiconfig", 20 "escapedName": "cosmiconfig", 21 "rawSpec": "7.0.1", 22 "saveSpec": null, 23 "fetchSpec": "7.0.1" 27 24 }, 28 "husky": { 29 "hooks": { 30 "pre-commit": "lint-staged && npm run typescript && npm run test", 31 "pre-push": "npm run check:all" 32 } 33 }, 34 "lint-staged": { 35 "*.{js,ts}": [ 36 "eslint --fix", 37 "prettier --write" 38 ], 39 "*.{json,yml,yaml}": [ 40 "prettier --write" 41 ], 42 "*.md": [ 43 "remark-preset-davidtheclark", 44 "remark-preset-davidtheclark --format" 45 ] 46 }, 47 "repository": { 48 "type": "git", 49 "url": "git+https://github.com/davidtheclark/cosmiconfig.git" 50 }, 51 "keywords": [ 52 "load", 53 "configuration", 54 "config" 25 "_requiredBy": [ 26 "/postcss-loader" 55 27 ], 56 "author": "David Clark <david.dave.clark@gmail.com>", 57 "contributors": [ 58 "Bogdan Chadkin <trysound@yandex.ru>", 59 "Suhas Karanth <sudo.suhas@gmail.com>" 60 ], 61 "license": "MIT", 62 "bugs": { 63 "url": "https://github.com/davidtheclark/cosmiconfig/issues" 64 }, 65 "homepage": "https://github.com/davidtheclark/cosmiconfig#readme", 66 "prettier": { 67 "trailingComma": "all", 68 "arrowParens": "always", 69 "singleQuote": true, 70 "printWidth": 80, 71 "tabWidth": 2 72 }, 73 "jest": { 74 "testEnvironment": "node", 75 "collectCoverageFrom": [ 76 "src/**/*.{js,ts}" 77 ], 78 "coverageReporters": [ 79 "text", 80 "html", 81 "lcov" 82 ], 83 "coverageThreshold": { 84 "global": { 85 "branches": 100, 86 "functions": 100, 87 "lines": 100, 88 "statements": 100 89 } 90 }, 91 "resetModules": true, 92 "resetMocks": true, 93 "restoreMocks": true 28 "_resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz", 29 "_spec": "7.0.1", 30 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 31 "author": { 32 "name": "David Clark", 33 "email": "david.dave.clark@gmail.com" 94 34 }, 95 35 "babel": { … … 106 46 ] 107 47 }, 48 "bugs": { 49 "url": "https://github.com/davidtheclark/cosmiconfig/issues" 50 }, 51 "contributors": [ 52 { 53 "name": "Bogdan Chadkin", 54 "email": "trysound@yandex.ru" 55 }, 56 { 57 "name": "Suhas Karanth", 58 "email": "sudo.suhas@gmail.com" 59 } 60 ], 108 61 "dependencies": { 109 62 "@types/parse-json": "^4.0.0", … … 113 66 "yaml": "^1.10.0" 114 67 }, 68 "description": "Find and load configuration from a package.json property, rc file, or CommonJS module", 115 69 "devDependencies": { 116 70 "@babel/cli": "^7.10.4", … … 142 96 "engines": { 143 97 "node": ">=10" 144 } 98 }, 99 "files": [ 100 "dist" 101 ], 102 "homepage": "https://github.com/davidtheclark/cosmiconfig#readme", 103 "husky": { 104 "hooks": { 105 "pre-commit": "lint-staged && npm run typescript && npm run test", 106 "pre-push": "npm run check:all" 107 } 108 }, 109 "jest": { 110 "testEnvironment": "node", 111 "collectCoverageFrom": [ 112 "src/**/*.{js,ts}" 113 ], 114 "coverageReporters": [ 115 "text", 116 "html", 117 "lcov" 118 ], 119 "coverageThreshold": { 120 "global": { 121 "branches": 100, 122 "functions": 100, 123 "lines": 100, 124 "statements": 100 125 } 126 }, 127 "resetModules": true, 128 "resetMocks": true, 129 "restoreMocks": true 130 }, 131 "keywords": [ 132 "load", 133 "configuration", 134 "config" 135 ], 136 "license": "MIT", 137 "lint-staged": { 138 "*.{js,ts}": [ 139 "eslint --fix", 140 "prettier --write" 141 ], 142 "*.{json,yml,yaml}": [ 143 "prettier --write" 144 ], 145 "*.md": [ 146 "remark-preset-davidtheclark", 147 "remark-preset-davidtheclark --format" 148 ] 149 }, 150 "main": "dist/index.js", 151 "name": "cosmiconfig", 152 "prettier": { 153 "trailingComma": "all", 154 "arrowParens": "always", 155 "singleQuote": true, 156 "printWidth": 80, 157 "tabWidth": 2 158 }, 159 "repository": { 160 "type": "git", 161 "url": "git+https://github.com/davidtheclark/cosmiconfig.git" 162 }, 163 "scripts": { 164 "build": "npm run clean && npm run build:compile && npm run build:types", 165 "build:compile": "cross-env NODE_ENV=production babel src -d dist --verbose --extensions .js,.ts --ignore \"**/**/*.test.js\",\"**/**/*.test.ts\" --source-maps", 166 "build:types": "cross-env NODE_ENV=production tsc --project tsconfig.types.json", 167 "check:all": "npm run test && npm run typescript && npm run lint && npm run format:check", 168 "clean": "del-cli --dot=true \"./dist/**/*\"", 169 "dev": "npm run clean && npm run build:compile -- --watch", 170 "format": "prettier \"**/*.{js,ts,json,yml,yaml}\" --write", 171 "format:check": "prettier \"**/*.{js,ts,json,yml,yaml}\" --check", 172 "format:md": "remark-preset-davidtheclark --format", 173 "lint": "eslint --ext .js,.ts . && npm run lint:md", 174 "lint:fix": "eslint --ext .js,.ts . --fix", 175 "lint:md": "remark-preset-davidtheclark", 176 "prepublishOnly": "npm run check:all && npm run build", 177 "test": "jest --coverage", 178 "test:watch": "jest --watch", 179 "typescript": "tsc" 180 }, 181 "types": "dist/index.d.ts", 182 "version": "7.0.1" 145 183 }
Note:
See TracChangeset
for help on using the changeset viewer.