package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "write-file-atomic",
  3. "version": "4.0.2",
  4. "description": "Write files in an atomic fashion w/configurable ownership",
  5. "main": "./lib/index.js",
  6. "scripts": {
  7. "test": "tap",
  8. "posttest": "npm run lint",
  9. "lint": "eslint \"**/*.js\"",
  10. "postlint": "template-oss-check",
  11. "preversion": "npm test",
  12. "postversion": "npm publish",
  13. "prepublishOnly": "git push origin --follow-tags",
  14. "lintfix": "npm run lint -- --fix",
  15. "snap": "tap",
  16. "template-oss-apply": "template-oss-apply --force"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "https://github.com/npm/write-file-atomic.git"
  21. },
  22. "keywords": [
  23. "writeFile",
  24. "atomic"
  25. ],
  26. "author": "GitHub Inc.",
  27. "license": "ISC",
  28. "bugs": {
  29. "url": "https://github.com/npm/write-file-atomic/issues"
  30. },
  31. "homepage": "https://github.com/npm/write-file-atomic",
  32. "dependencies": {
  33. "imurmurhash": "^0.1.4",
  34. "signal-exit": "^3.0.7"
  35. },
  36. "devDependencies": {
  37. "@npmcli/eslint-config": "^3.0.1",
  38. "@npmcli/template-oss": "3.5.0",
  39. "mkdirp": "^1.0.4",
  40. "rimraf": "^3.0.2",
  41. "tap": "^16.0.1"
  42. },
  43. "files": [
  44. "bin/",
  45. "lib/"
  46. ],
  47. "engines": {
  48. "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
  49. },
  50. "templateOSS": {
  51. "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
  52. "windowsCI": false,
  53. "version": "3.5.0"
  54. }
  55. }