package.json 866 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "steno",
  3. "version": "0.4.4",
  4. "description": "Simple file writer with race condition prevention and atomic writing",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "node test | tap-dot && standard",
  8. "prepush": "npm test"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "https://github.com/typicode/steno.git"
  13. },
  14. "keywords": [
  15. "fs",
  16. "file",
  17. "write",
  18. "writer",
  19. "asynchronous",
  20. "race",
  21. "condition",
  22. "atomic",
  23. "writing",
  24. "safe"
  25. ],
  26. "author": "typicode",
  27. "license": "MIT",
  28. "bugs": {
  29. "url": "https://github.com/typicode/steno/issues"
  30. },
  31. "homepage": "https://github.com/typicode/steno",
  32. "devDependencies": {
  33. "after": "^0.8.1",
  34. "husky": "^0.11.1",
  35. "standard": "^6.0.7",
  36. "tap-dot": "^0.2.3",
  37. "tape": "^3.0.1"
  38. },
  39. "dependencies": {
  40. "graceful-fs": "^4.1.3"
  41. }
  42. }