0fc4e0b298076f6fe3db9d62e5ff08b8da640f9627ff94f1c2384fd8b31d02349e7df990254015171a8a9d3445f7f5ae98fb562e28788821bd11f558ec1dd2 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. {
  2. "name": "lint-staged",
  3. "version": "10.5.3",
  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. "bin": "./bin/lint-staged.js",
  17. "main": "./lib/index.js",
  18. "files": [
  19. "bin",
  20. "lib"
  21. ],
  22. "scripts": {
  23. "cz": "git-cz",
  24. "lint": "eslint .",
  25. "pretest": "npm run lint",
  26. "test": "jest --coverage",
  27. "test:watch": "jest --watch"
  28. },
  29. "husky": {
  30. "hooks": {
  31. "pre-commit": "./bin/lint-staged.js"
  32. }
  33. },
  34. "dependencies": {
  35. "chalk": "^4.1.0",
  36. "cli-truncate": "^2.1.0",
  37. "commander": "^6.2.0",
  38. "cosmiconfig": "^7.0.0",
  39. "debug": "^4.2.0",
  40. "dedent": "^0.7.0",
  41. "enquirer": "^2.3.6",
  42. "execa": "^4.1.0",
  43. "listr2": "^3.2.2",
  44. "log-symbols": "^4.0.0",
  45. "micromatch": "^4.0.2",
  46. "normalize-path": "^3.0.0",
  47. "please-upgrade-node": "^3.2.0",
  48. "string-argv": "0.3.1",
  49. "stringify-object": "^3.3.0"
  50. },
  51. "devDependencies": {
  52. "@babel/core": "^7.12.3",
  53. "@babel/plugin-proposal-object-rest-spread": "^7.12.1",
  54. "@babel/preset-env": "^7.12.1",
  55. "babel-eslint": "10.1.0",
  56. "babel-jest": "^26.6.1",
  57. "consolemock": "^1.1.0",
  58. "eslint": "^7.12.1",
  59. "eslint-config-prettier": "^6.15.0",
  60. "eslint-plugin-import": "^2.22.1",
  61. "eslint-plugin-node": "^11.1.0",
  62. "eslint-plugin-prettier": "^3.1.4",
  63. "fs-extra": "^9.0.1",
  64. "husky": "^4.3.0",
  65. "jest": "^26.6.1",
  66. "jest-snapshot-serializer-ansi": "^1.0.0",
  67. "prettier": "^2.1.2"
  68. },
  69. "config": {
  70. "commitizen": {
  71. "path": "./node_modules/cz-conventional-changelog"
  72. }
  73. },
  74. "jest": {
  75. "collectCoverage": true,
  76. "collectCoverageFrom": [
  77. "lib/**/*.js"
  78. ],
  79. "setupFiles": [
  80. "./testSetup.js"
  81. ],
  82. "snapshotSerializers": [
  83. "jest-snapshot-serializer-ansi"
  84. ],
  85. "testEnvironment": "node"
  86. },
  87. "keywords": [
  88. "lint",
  89. "git",
  90. "staged",
  91. "eslint",
  92. "prettier",
  93. "stylelint",
  94. "code",
  95. "quality",
  96. "check",
  97. "format",
  98. "validate"
  99. ]
  100. }