UNPKG

1.96 kBJSONView Raw
1{
2 "name": "lint-staged",
3 "version": "13.2.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 "./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.2.0",
37 "cli-truncate": "^3.1.0",
38 "commander": "^10.0.0",
39 "debug": "^4.3.4",
40 "execa": "^7.0.0",
41 "lilconfig": "2.1.0",
42 "listr2": "^5.0.7",
43 "micromatch": "^4.0.5",
44 "normalize-path": "^3.0.0",
45 "object-inspect": "^1.12.3",
46 "pidtree": "^0.6.0",
47 "string-argv": "^0.3.1",
48 "yaml": "^2.2.1"
49 },
50 "devDependencies": {
51 "@babel/core": "^7.21.0",
52 "@babel/eslint-parser": "^7.19.1",
53 "@babel/preset-env": "^7.20.2",
54 "babel-jest": "^29.5.0",
55 "babel-plugin-transform-imports": "2.0.0",
56 "consolemock": "^1.1.0",
57 "eslint": "^8.35.0",
58 "eslint-config-prettier": "^8.7.0",
59 "eslint-plugin-import": "^2.27.5",
60 "eslint-plugin-node": "^11.1.0",
61 "eslint-plugin-prettier": "^4.2.1",
62 "fs-extra": "^11.1.0",
63 "husky": "^8.0.3",
64 "jest": "^29.5.0",
65 "jest-snapshot-serializer-ansi": "^1.0.0",
66 "prettier": "^2.8.4"
67 },
68 "keywords": [
69 "lint",
70 "git",
71 "staged",
72 "eslint",
73 "prettier",
74 "stylelint",
75 "code",
76 "quality",
77 "check",
78 "format",
79 "validate"
80 ]
81}