UNPKG

2.16 kBJSONView Raw
1{
2 "name": "lint-staged",
3 "version": "15.0.1",
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": ">=18.12.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 "version": "npx changeset version",
35 "postversion": "npm i --package-lock-only && git commit -am \"chore(changeset): release\"",
36 "tag": "npx changeset tag"
37 },
38 "dependencies": {
39 "chalk": "5.3.0",
40 "commander": "11.1.0",
41 "debug": "4.3.4",
42 "execa": "8.0.1",
43 "lilconfig": "2.1.0",
44 "listr2": "7.0.1",
45 "micromatch": "4.0.5",
46 "pidtree": "0.6.0",
47 "string-argv": "0.3.2",
48 "yaml": "2.3.2"
49 },
50 "devDependencies": {
51 "@babel/core": "7.23.2",
52 "@babel/eslint-parser": "7.22.15",
53 "@babel/preset-env": "7.23.2",
54 "@changesets/changelog-github": "0.4.8",
55 "@changesets/cli": "2.26.2",
56 "@commitlint/cli": "17.7.2",
57 "@commitlint/config-conventional": "17.7.0",
58 "babel-jest": "29.7.0",
59 "babel-plugin-transform-imports": "2.0.0",
60 "consolemock": "1.1.0",
61 "eslint": "8.51.0",
62 "eslint-config-prettier": "9.0.0",
63 "eslint-plugin-import": "2.28.1",
64 "eslint-plugin-node": "11.1.0",
65 "eslint-plugin-prettier": "5.0.1",
66 "husky": "8.0.3",
67 "jest": "29.7.0",
68 "jest-snapshot-serializer-ansi": "2.1.0",
69 "mock-stdin": "1.0.0",
70 "prettier": "3.0.3"
71 },
72 "keywords": [
73 "lint",
74 "git",
75 "staged",
76 "eslint",
77 "prettier",
78 "stylelint",
79 "code",
80 "quality",
81 "check",
82 "format",
83 "validate"
84 ]
85}