package.json 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. {
  2. "_from": "cosmiconfig@^5.0.0",
  3. "_id": "cosmiconfig@5.2.1",
  4. "_inBundle": false,
  5. "_integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==",
  6. "_location": "/cosmiconfig",
  7. "_phantomChildren": {
  8. "argparse": "1.0.10"
  9. },
  10. "_requested": {
  11. "type": "range",
  12. "registry": true,
  13. "raw": "cosmiconfig@^5.0.0",
  14. "name": "cosmiconfig",
  15. "escapedName": "cosmiconfig",
  16. "rawSpec": "^5.0.0",
  17. "saveSpec": null,
  18. "fetchSpec": "^5.0.0"
  19. },
  20. "_requiredBy": [
  21. "/optimize-css-assets-webpack-plugin/cssnano",
  22. "/postcss-load-config"
  23. ],
  24. "_resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz",
  25. "_shasum": "040f726809c591e77a17c0a3626ca45b4f168b1a",
  26. "_spec": "cosmiconfig@^5.0.0",
  27. "_where": "D:\\workSpace\\dealer_front\\node_modules\\optimize-css-assets-webpack-plugin\\node_modules\\cssnano",
  28. "author": {
  29. "name": "David Clark",
  30. "email": "david.dave.clark@gmail.com"
  31. },
  32. "babel": {
  33. "plugins": [
  34. "transform-flow-strip-types"
  35. ]
  36. },
  37. "bugs": {
  38. "url": "https://github.com/davidtheclark/cosmiconfig/issues"
  39. },
  40. "bundleDependencies": false,
  41. "contributors": [
  42. {
  43. "name": "Bogdan Chadkin",
  44. "email": "trysound@yandex.ru"
  45. },
  46. {
  47. "name": "Suhas Karanth",
  48. "email": "sudo.suhas@gmail.com"
  49. }
  50. ],
  51. "dependencies": {
  52. "import-fresh": "^2.0.0",
  53. "is-directory": "^0.3.1",
  54. "js-yaml": "^3.13.1",
  55. "parse-json": "^4.0.0"
  56. },
  57. "deprecated": false,
  58. "description": "Find and load configuration from a package.json property, rc file, or CommonJS module",
  59. "devDependencies": {
  60. "babel-eslint": "^8.0.3",
  61. "babel-plugin-transform-flow-strip-types": "^6.22.0",
  62. "del": "^3.0.0",
  63. "eslint": "^4.12.1",
  64. "eslint-config-davidtheclark-node": "^0.2.2",
  65. "eslint-config-prettier": "^2.9.0",
  66. "eslint-plugin-flowtype": "^2.39.1",
  67. "eslint-plugin-node": "^5.2.1",
  68. "flow-bin": "^0.68.0",
  69. "flow-remove-types": "^1.2.3",
  70. "husky": "^0.14.3",
  71. "jest": "^21.2.1",
  72. "lint-staged": "^6.0.0",
  73. "make-dir": "^1.2.0",
  74. "parent-module": "^0.1.0",
  75. "prettier": "^1.8.2",
  76. "remark-cli": "^5.0.0",
  77. "remark-preset-davidtheclark": "^0.7.0"
  78. },
  79. "engines": {
  80. "node": ">=4"
  81. },
  82. "files": [
  83. "dist"
  84. ],
  85. "homepage": "https://github.com/davidtheclark/cosmiconfig#readme",
  86. "jest": {
  87. "testEnvironment": "node",
  88. "collectCoverageFrom": [
  89. "src/*.js"
  90. ],
  91. "coverageReporters": [
  92. "text",
  93. "html",
  94. "lcov"
  95. ],
  96. "coverageThreshold": {
  97. "global": {
  98. "branches": 100,
  99. "functions": 100,
  100. "lines": 100,
  101. "statements": 100
  102. }
  103. },
  104. "resetModules": true,
  105. "resetMocks": true
  106. },
  107. "keywords": [
  108. "load",
  109. "configuration",
  110. "config"
  111. ],
  112. "license": "MIT",
  113. "lint-staged": {
  114. "*.js": [
  115. "eslint --fix",
  116. "prettier --write",
  117. "git add"
  118. ],
  119. "*.md": [
  120. "npm run lint:md-partial",
  121. "git add"
  122. ]
  123. },
  124. "main": "dist/index.js",
  125. "name": "cosmiconfig",
  126. "prettier": {
  127. "trailingComma": "es5",
  128. "singleQuote": true,
  129. "printWidth": 80,
  130. "tabWidth": 2
  131. },
  132. "repository": {
  133. "type": "git",
  134. "url": "git+https://github.com/davidtheclark/cosmiconfig.git"
  135. },
  136. "scripts": {
  137. "build": "flow-remove-types src --out-dir dist --quiet",
  138. "coverage": "jest --coverage --coverageReporters=html --coverageReporters=text",
  139. "format": "prettier --write \"{src/*.js,test/*.js}\"",
  140. "lint": "eslint . && npm run lint:md",
  141. "lint:fix": "eslint . --fix",
  142. "lint:md": "npm run lint:md-partial -- *.md",
  143. "lint:md-partial": "remark -u remark-preset-davidtheclark --frail --quiet --no-stdout --output --",
  144. "precommit": "lint-staged && jest && flow check",
  145. "prepublishOnly": "npm run build",
  146. "pretest": "npm run lint && flow check",
  147. "test": "jest --coverage",
  148. "test:watch": "jest --watch"
  149. },
  150. "version": "5.2.1"
  151. }