Simple email application for Android. Original source code: https://framagit.org/dystopia-project/simple-email
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

148 lines
3.8 KiB

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