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.

102 lines
2.7 KiB

  1. {
  2. "_from": "fs-extra@^7.0.0",
  3. "_id": "fs-extra@7.0.1",
  4. "_inBundle": false,
  5. "_integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==",
  6. "_location": "/fs-extra",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "fs-extra@^7.0.0",
  12. "name": "fs-extra",
  13. "escapedName": "fs-extra",
  14. "rawSpec": "^7.0.0",
  15. "saveSpec": null,
  16. "fetchSpec": "^7.0.0"
  17. },
  18. "_requiredBy": [
  19. "/@semantic-release/changelog",
  20. "/@semantic-release/git",
  21. "/@semantic-release/github",
  22. "/@semantic-release/npm"
  23. ],
  24. "_resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz",
  25. "_shasum": "4f189c44aa123b895f722804f55ea23eadc348e9",
  26. "_spec": "fs-extra@^7.0.0",
  27. "_where": "/home/camilo/Documents/projects/personal/simple-email/node_modules/@semantic-release/changelog",
  28. "author": {
  29. "name": "JP Richardson",
  30. "email": "jprichardson@gmail.com"
  31. },
  32. "bugs": {
  33. "url": "https://github.com/jprichardson/node-fs-extra/issues"
  34. },
  35. "bundleDependencies": false,
  36. "dependencies": {
  37. "graceful-fs": "^4.1.2",
  38. "jsonfile": "^4.0.0",
  39. "universalify": "^0.1.0"
  40. },
  41. "deprecated": false,
  42. "description": "fs-extra contains methods that aren't included in the vanilla Node.js fs package. Such as mkdir -p, cp -r, and rm -rf.",
  43. "devDependencies": {
  44. "coveralls": "^3.0.0",
  45. "istanbul": "^0.4.5",
  46. "klaw": "^2.1.1",
  47. "klaw-sync": "^3.0.2",
  48. "minimist": "^1.1.1",
  49. "mocha": "^5.0.5",
  50. "proxyquire": "^2.0.1",
  51. "read-dir-files": "^0.1.1",
  52. "rimraf": "^2.2.8",
  53. "secure-random": "^1.1.1",
  54. "semver": "^5.3.0",
  55. "standard": "^11.0.1",
  56. "standard-markdown": "^4.0.1"
  57. },
  58. "engines": {
  59. "node": ">=6 <7 || >=8"
  60. },
  61. "homepage": "https://github.com/jprichardson/node-fs-extra",
  62. "keywords": [
  63. "fs",
  64. "file",
  65. "file system",
  66. "copy",
  67. "directory",
  68. "extra",
  69. "mkdirp",
  70. "mkdir",
  71. "mkdirs",
  72. "recursive",
  73. "json",
  74. "read",
  75. "write",
  76. "extra",
  77. "delete",
  78. "remove",
  79. "touch",
  80. "create",
  81. "text",
  82. "output",
  83. "move"
  84. ],
  85. "license": "MIT",
  86. "main": "./lib/index.js",
  87. "name": "fs-extra",
  88. "repository": {
  89. "type": "git",
  90. "url": "git+https://github.com/jprichardson/node-fs-extra.git"
  91. },
  92. "scripts": {
  93. "coverage": "istanbul cover -i 'lib/**' -x '**/__tests__/**' test.js",
  94. "coveralls": "coveralls < coverage/lcov.info",
  95. "full-ci": "npm run lint && npm run coverage",
  96. "lint": "standard",
  97. "test": "npm run lint && npm run unit",
  98. "test-find": "find ./lib/**/__tests__ -name *.test.js | xargs mocha",
  99. "unit": "node test.js"
  100. },
  101. "version": "7.0.1"
  102. }