package.json 3.8 KB

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