package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "name": "proper-lockfile",
  3. "version": "4.1.2",
  4. "description": "A inter-process and inter-machine lockfile utility that works on a local or network file system",
  5. "keywords": [
  6. "lock",
  7. "locking",
  8. "file",
  9. "lockfile",
  10. "fs",
  11. "cross-process"
  12. ],
  13. "author": "André Cruz <andre@moxy.studio>",
  14. "homepage": "https://github.com/moxystudio/node-proper-lockfile",
  15. "repository": {
  16. "type": "git",
  17. "url": "git@github.com:moxystudio/node-proper-lockfile.git"
  18. },
  19. "license": "MIT",
  20. "main": "index.js",
  21. "files": [
  22. "lib"
  23. ],
  24. "scripts": {
  25. "lint": "eslint .",
  26. "test": "jest --env node --coverage --runInBand",
  27. "prerelease": "npm t && npm run lint",
  28. "release": "standard-version",
  29. "postrelease": "git push --follow-tags origin HEAD && npm publish"
  30. },
  31. "husky": {
  32. "hooks": {
  33. "commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
  34. "pre-commit": "lint-staged"
  35. }
  36. },
  37. "lint-staged": {
  38. "*.js": [
  39. "eslint --fix",
  40. "git add"
  41. ]
  42. },
  43. "commitlint": {
  44. "extends": [
  45. "@commitlint/config-conventional"
  46. ]
  47. },
  48. "dependencies": {
  49. "graceful-fs": "^4.2.4",
  50. "retry": "^0.12.0",
  51. "signal-exit": "^3.0.2"
  52. },
  53. "devDependencies": {
  54. "@commitlint/cli": "^7.0.0",
  55. "@commitlint/config-conventional": "^7.0.1",
  56. "@segment/clear-timeouts": "^2.0.0",
  57. "delay": "^4.1.0",
  58. "eslint": "^5.3.0",
  59. "eslint-config-moxy": "^7.1.0",
  60. "execa": "^1.0.0",
  61. "husky": "^1.1.4",
  62. "jest": "^24.5.0",
  63. "lint-staged": "^8.0.4",
  64. "mkdirp": "^0.5.1",
  65. "p-defer": "^2.1.0",
  66. "rimraf": "^2.6.2",
  67. "stable": "^0.1.8",
  68. "standard-version": "^5.0.0",
  69. "thread-sleep": "^2.1.0"
  70. }
  71. }