package.json 1018 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "write-file-atomic",
  3. "version": "2.4.3",
  4. "description": "Write files in an atomic fashion w/configurable ownership",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "standard && tap --100 test/*.js",
  8. "preversion": "npm test",
  9. "postversion": "npm publish",
  10. "postpublish": "git push origin --follow-tags"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "git@github.com:iarna/write-file-atomic.git"
  15. },
  16. "keywords": [
  17. "writeFile",
  18. "atomic"
  19. ],
  20. "author": "Rebecca Turner <me@re-becca.org> (http://re-becca.org)",
  21. "license": "ISC",
  22. "bugs": {
  23. "url": "https://github.com/iarna/write-file-atomic/issues"
  24. },
  25. "homepage": "https://github.com/iarna/write-file-atomic",
  26. "dependencies": {
  27. "graceful-fs": "^4.1.11",
  28. "imurmurhash": "^0.1.4",
  29. "signal-exit": "^3.0.2"
  30. },
  31. "devDependencies": {
  32. "mkdirp": "^0.5.1",
  33. "require-inject": "^1.4.0",
  34. "rimraf": "^2.5.4",
  35. "standard": "^12.0.1",
  36. "tap": "^12.1.3"
  37. },
  38. "files": [
  39. "index.js"
  40. ]
  41. }