package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. "name": "lint-staged",
  3. "version": "13.3.0",
  4. "description": "Lint files staged by git",
  5. "license": "MIT",
  6. "repository": "https://github.com/okonet/lint-staged",
  7. "author": "Andrey Okonetchnikov <andrey@okonet.ru>",
  8. "maintainers": [
  9. "Lufty Wiranda <lufty.wiranda@gmail.com>",
  10. "Suhas Karanth <sudo.suhas@gmail.com>",
  11. "Iiro Jäppinen <iiro@jappinen.fi> (https://iiro.fi)"
  12. ],
  13. "funding": {
  14. "url": "https://opencollective.com/lint-staged"
  15. },
  16. "engines": {
  17. "node": "^16.14.0 || >=18.0.0"
  18. },
  19. "type": "module",
  20. "bin": "./bin/lint-staged.js",
  21. "exports": {
  22. ".": "./lib/index.js",
  23. "./bin": "./bin/lint-staged.js",
  24. "./package.json": "./package.json"
  25. },
  26. "files": [
  27. "bin",
  28. "lib"
  29. ],
  30. "scripts": {
  31. "lint": "eslint .",
  32. "test": "jest --coverage",
  33. "test:watch": "jest --watch"
  34. },
  35. "dependencies": {
  36. "chalk": "5.3.0",
  37. "commander": "11.0.0",
  38. "debug": "4.3.4",
  39. "execa": "7.2.0",
  40. "lilconfig": "2.1.0",
  41. "listr2": "6.6.1",
  42. "micromatch": "4.0.5",
  43. "pidtree": "0.6.0",
  44. "string-argv": "0.3.2",
  45. "yaml": "2.3.1"
  46. },
  47. "devDependencies": {
  48. "@babel/core": "7.22.10",
  49. "@babel/eslint-parser": "7.22.10",
  50. "@babel/preset-env": "7.22.10",
  51. "babel-jest": "29.6.2",
  52. "babel-plugin-transform-imports": "2.0.0",
  53. "consolemock": "1.1.0",
  54. "eslint": "8.46.0",
  55. "eslint-config-prettier": "9.0.0",
  56. "eslint-plugin-import": "2.28.0",
  57. "eslint-plugin-node": "11.1.0",
  58. "eslint-plugin-prettier": "5.0.0",
  59. "husky": "8.0.3",
  60. "jest": "29.6.2",
  61. "jest-snapshot-serializer-ansi": "2.1.0",
  62. "prettier": "3.0.1"
  63. },
  64. "keywords": [
  65. "lint",
  66. "git",
  67. "staged",
  68. "eslint",
  69. "prettier",
  70. "stylelint",
  71. "code",
  72. "quality",
  73. "check",
  74. "format",
  75. "validate"
  76. ]
  77. }