package.json 3.8 KB

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