package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. {
  2. "name": "write",
  3. "description": "Write data to a file, replacing the file if it already exists and creating any intermediate directories if they don't already exist. Thin wrapper around node's native fs methods.",
  4. "version": "1.0.3",
  5. "homepage": "https://github.com/jonschlinkert/write",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "contributors": [
  8. "Charlike Mike Reagent (https://i.am.charlike.online)",
  9. "Jon Schlinkert (http://twitter.com/jonschlinkert)"
  10. ],
  11. "repository": "jonschlinkert/write",
  12. "bugs": {
  13. "url": "https://github.com/jonschlinkert/write/issues"
  14. },
  15. "license": "MIT",
  16. "files": [
  17. "index.js"
  18. ],
  19. "main": "index.js",
  20. "engines": {
  21. "node": ">=4"
  22. },
  23. "scripts": {
  24. "test": "mocha"
  25. },
  26. "dependencies": {
  27. "mkdirp": "^0.5.1"
  28. },
  29. "devDependencies": {
  30. "async-each": "^1.0.1",
  31. "delete": "^1.1.0",
  32. "gulp-format-md": "^1.0.0",
  33. "mocha": "^3.4.2"
  34. },
  35. "keywords": [
  36. "file",
  37. "filepath",
  38. "files",
  39. "filesystem",
  40. "folder",
  41. "fs",
  42. "fs.writeFile",
  43. "fs.writeFileSync",
  44. "path",
  45. "write"
  46. ],
  47. "verb": {
  48. "run": true,
  49. "toc": false,
  50. "layout": "default",
  51. "tasks": [
  52. "readme"
  53. ],
  54. "plugins": [
  55. "gulp-format-md"
  56. ],
  57. "related": {
  58. "list": [
  59. "delete",
  60. "read-data",
  61. "read-yaml",
  62. "write-data",
  63. "write-json",
  64. "write-yaml"
  65. ]
  66. },
  67. "reflinks": [
  68. "verb"
  69. ],
  70. "lint": {
  71. "reflinks": true
  72. }
  73. }
  74. }