package.json 3.9 KB

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