package.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. {
  2. "_from": "fs-extra@^3.0.1",
  3. "_id": "fs-extra@3.0.1",
  4. "_inBundle": false,
  5. "_integrity": "sha1-N5TzeMWLNC6n27sjCVEJxLO2IpE=",
  6. "_location": "/fs-extra",
  7. "_phantomChildren": {
  8. "graceful-fs": "4.2.8"
  9. },
  10. "_requested": {
  11. "type": "range",
  12. "registry": true,
  13. "raw": "fs-extra@^3.0.1",
  14. "name": "fs-extra",
  15. "escapedName": "fs-extra",
  16. "rawSpec": "^3.0.1",
  17. "saveSpec": null,
  18. "fetchSpec": "^3.0.1"
  19. },
  20. "_requiredBy": [
  21. "/"
  22. ],
  23. "_resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-3.0.1.tgz",
  24. "_shasum": "3794f378c58b342ea7dbbb23095109c4b3b62291",
  25. "_spec": "fs-extra@^3.0.1",
  26. "_where": "/home/ab/workspace/TypeMark",
  27. "author": {
  28. "name": "JP Richardson",
  29. "email": "jprichardson@gmail.com"
  30. },
  31. "bugs": {
  32. "url": "https://github.com/jprichardson/node-fs-extra/issues"
  33. },
  34. "bundleDependencies": false,
  35. "dependencies": {
  36. "graceful-fs": "^4.1.2",
  37. "jsonfile": "^3.0.0",
  38. "universalify": "^0.1.0"
  39. },
  40. "deprecated": false,
  41. "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.",
  42. "devDependencies": {
  43. "coveralls": "^2.11.2",
  44. "istanbul": "^0.4.5",
  45. "klaw": "^1.0.0",
  46. "klaw-sync": "^1.1.2",
  47. "minimist": "^1.1.1",
  48. "mocha": "^3.1.2",
  49. "proxyquire": "^1.7.10",
  50. "read-dir-files": "^0.1.1",
  51. "rimraf": "^2.2.8",
  52. "secure-random": "^1.1.1",
  53. "standard": "^10.0.2",
  54. "standard-markdown": "^2.3.0"
  55. },
  56. "homepage": "https://github.com/jprichardson/node-fs-extra",
  57. "keywords": [
  58. "fs",
  59. "file",
  60. "file system",
  61. "copy",
  62. "directory",
  63. "extra",
  64. "mkdirp",
  65. "mkdir",
  66. "mkdirs",
  67. "recursive",
  68. "json",
  69. "read",
  70. "write",
  71. "extra",
  72. "delete",
  73. "remove",
  74. "touch",
  75. "create",
  76. "text",
  77. "output",
  78. "move"
  79. ],
  80. "license": "MIT",
  81. "main": "./lib/index",
  82. "name": "fs-extra",
  83. "repository": {
  84. "type": "git",
  85. "url": "git+https://github.com/jprichardson/node-fs-extra.git"
  86. },
  87. "scripts": {
  88. "coverage": "istanbul cover -i 'lib/**' -x '**/__tests__/**' test.js",
  89. "coveralls": "npm run coverage && coveralls < coverage/lcov.info",
  90. "lint": "standard && standard-markdown",
  91. "test": "npm run lint && npm run unit",
  92. "test-find": "find ./lib/**/__tests__ -name *.test.js | xargs mocha",
  93. "unit": "node test.js"
  94. },
  95. "version": "3.0.1"
  96. }