1 | {
|
2 | "name": "lint-staged",
|
3 | "version": "13.0.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": "^14.13.1 || >=16.0.0"
|
18 | },
|
19 | "type": "module",
|
20 | "bin": "./bin/lint-staged.js",
|
21 | "exports": {
|
22 | ".": "./lib/index.js",
|
23 | "./package.json": "./package.json"
|
24 | },
|
25 | "files": [
|
26 | "bin",
|
27 | "lib"
|
28 | ],
|
29 | "scripts": {
|
30 | "lint": "eslint .",
|
31 | "test": "jest --coverage",
|
32 | "test:watch": "jest --watch"
|
33 | },
|
34 | "dependencies": {
|
35 | "cli-truncate": "^3.1.0",
|
36 | "colorette": "^2.0.16",
|
37 | "commander": "^9.3.0",
|
38 | "debug": "^4.3.4",
|
39 | "execa": "^6.1.0",
|
40 | "lilconfig": "2.0.5",
|
41 | "listr2": "^4.0.5",
|
42 | "micromatch": "^4.0.5",
|
43 | "normalize-path": "^3.0.0",
|
44 | "object-inspect": "^1.12.2",
|
45 | "pidtree": "^0.5.0",
|
46 | "string-argv": "^0.3.1",
|
47 | "yaml": "^2.1.1"
|
48 | },
|
49 | "devDependencies": {
|
50 | "@babel/core": "^7.18.2",
|
51 | "@babel/eslint-parser": "^7.18.2",
|
52 | "@babel/preset-env": "^7.18.2",
|
53 | "babel-jest": "^28.1.0",
|
54 | "babel-plugin-transform-imports": "2.0.0",
|
55 | "consolemock": "^1.1.0",
|
56 | "eslint": "^8.16.0",
|
57 | "eslint-config-prettier": "^8.5.0",
|
58 | "eslint-plugin-import": "^2.26.0",
|
59 | "eslint-plugin-node": "^11.1.0",
|
60 | "eslint-plugin-prettier": "^4.0.0",
|
61 | "fs-extra": "^10.1.0",
|
62 | "husky": "^8.0.1",
|
63 | "jest": "^28.1.0",
|
64 | "jest-snapshot-serializer-ansi": "^1.0.0",
|
65 | "prettier": "^2.6.2"
|
66 | },
|
67 | "keywords": [
|
68 | "lint",
|
69 | "git",
|
70 | "staged",
|
71 | "eslint",
|
72 | "prettier",
|
73 | "stylelint",
|
74 | "code",
|
75 | "quality",
|
76 | "check",
|
77 | "format",
|
78 | "validate"
|
79 | ]
|
80 | }
|