123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- {
- "name": "lint-staged",
- "version": "13.2.0",
- "description": "Lint files staged by git",
- "license": "MIT",
- "repository": "https://github.com/okonet/lint-staged",
- "author": "Andrey Okonetchnikov <andrey@okonet.ru>",
- "maintainers": [
- "Lufty Wiranda <lufty.wiranda@gmail.com>",
- "Suhas Karanth <sudo.suhas@gmail.com>",
- "Iiro Jäppinen <iiro@jappinen.fi> (https://iiro.fi)"
- ],
- "funding": {
- "url": "https://opencollective.com/lint-staged"
- },
- "engines": {
- "node": "^14.13.1 || >=16.0.0"
- },
- "type": "module",
- "bin": "./bin/lint-staged.js",
- "exports": {
- ".": "./lib/index.js",
- "./bin": "./bin/lint-staged.js",
- "./package.json": "./package.json"
- },
- "files": [
- "bin",
- "lib"
- ],
- "scripts": {
- "lint": "eslint .",
- "test": "jest --coverage",
- "test:watch": "jest --watch"
- },
- "dependencies": {
- "chalk": "5.2.0",
- "cli-truncate": "^3.1.0",
- "commander": "^10.0.0",
- "debug": "^4.3.4",
- "execa": "^7.0.0",
- "lilconfig": "2.1.0",
- "listr2": "^5.0.7",
- "micromatch": "^4.0.5",
- "normalize-path": "^3.0.0",
- "object-inspect": "^1.12.3",
- "pidtree": "^0.6.0",
- "string-argv": "^0.3.1",
- "yaml": "^2.2.1"
- },
- "devDependencies": {
- "@babel/core": "^7.21.0",
- "@babel/eslint-parser": "^7.19.1",
- "@babel/preset-env": "^7.20.2",
- "babel-jest": "^29.5.0",
- "babel-plugin-transform-imports": "2.0.0",
- "consolemock": "^1.1.0",
- "eslint": "^8.35.0",
- "eslint-config-prettier": "^8.7.0",
- "eslint-plugin-import": "^2.27.5",
- "eslint-plugin-node": "^11.1.0",
- "eslint-plugin-prettier": "^4.2.1",
- "fs-extra": "^11.1.0",
- "husky": "^8.0.3",
- "jest": "^29.5.0",
- "jest-snapshot-serializer-ansi": "^1.0.0",
- "prettier": "^2.8.4"
- },
- "keywords": [
- "lint",
- "git",
- "staged",
- "eslint",
- "prettier",
- "stylelint",
- "code",
- "quality",
- "check",
- "format",
- "validate"
- ]
- }
|