UNPKG

2.01 kBJSONView Raw
1{
2 "name": "lint-staged",
3 "version": "12.0.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 "engines": {
17 "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
18 },
19 "type": "module",
20 "bin": "./bin/lint-staged.js",
21 "exports": "./lib/index.js",
22 "files": [
23 "bin",
24 "lib"
25 ],
26 "scripts": {
27 "cz": "git-cz",
28 "lint": "eslint .",
29 "test": "jest --coverage",
30 "test:watch": "jest --watch"
31 },
32 "dependencies": {
33 "cli-truncate": "^3.1.0",
34 "colorette": "^2.0.16",
35 "commander": "^8.3.0",
36 "cosmiconfig": "^7.0.1",
37 "debug": "^4.3.2",
38 "enquirer": "^2.3.6",
39 "execa": "^5.1.1",
40 "listr2": "^3.13.3",
41 "micromatch": "^4.0.4",
42 "normalize-path": "^3.0.0",
43 "object-inspect": "^1.11.0",
44 "string-argv": "^0.3.1",
45 "supports-color": "^9.0.2"
46 },
47 "devDependencies": {
48 "@babel/core": "^7.16.0",
49 "@babel/eslint-parser": "^7.16.3",
50 "@babel/preset-env": "^7.16.0",
51 "babel-jest": "^27.3.1",
52 "consolemock": "^1.1.0",
53 "eslint": "^8.2.0",
54 "eslint-config-prettier": "^8.3.0",
55 "eslint-plugin-import": "^2.25.3",
56 "eslint-plugin-node": "^11.1.0",
57 "eslint-plugin-prettier": "^4.0.0",
58 "fs-extra": "^10.0.0",
59 "husky": "^7.0.4",
60 "jest": "^27.3.1",
61 "jest-mock-console": "^1.2.3",
62 "jest-snapshot-serializer-ansi": "^1.0.0",
63 "prettier": "^2.4.1"
64 },
65 "config": {
66 "commitizen": {
67 "path": "./node_modules/cz-conventional-changelog"
68 }
69 },
70 "keywords": [
71 "lint",
72 "git",
73 "staged",
74 "eslint",
75 "prettier",
76 "stylelint",
77 "code",
78 "quality",
79 "check",
80 "format",
81 "validate"
82 ]
83}