UNPKG

2.25 kBJSONView Raw
1{
2 "name": "lint-staged",
3 "version": "11.1.4",
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 "bin": "./bin/lint-staged.js",
17 "main": "./lib/index.js",
18 "files": [
19 "bin",
20 "lib"
21 ],
22 "scripts": {
23 "cz": "git-cz",
24 "lint": "eslint .",
25 "pretest": "npm run lint",
26 "test": "jest --coverage",
27 "test:watch": "jest --watch"
28 },
29 "dependencies": {
30 "chalk": "^4.1.1",
31 "cli-truncate": "^2.1.0",
32 "commander": "^7.2.0",
33 "cosmiconfig": "^7.0.0",
34 "debug": "^4.3.1",
35 "enquirer": "^2.3.6",
36 "execa": "^5.0.0",
37 "listr2": "^3.8.2",
38 "log-symbols": "^4.1.0",
39 "micromatch": "^4.0.4",
40 "normalize-path": "^3.0.0",
41 "please-upgrade-node": "^3.2.0",
42 "string-argv": "0.3.1",
43 "stringify-object": "^3.3.0"
44 },
45 "devDependencies": {
46 "@babel/core": "^7.14.0",
47 "@babel/plugin-proposal-object-rest-spread": "^7.13.8",
48 "@babel/preset-env": "^7.14.1",
49 "babel-eslint": "10.1.0",
50 "babel-jest": "^26.6.3",
51 "consolemock": "^1.1.0",
52 "eslint": "^7.25.0",
53 "eslint-config-prettier": "^8.3.0",
54 "eslint-plugin-import": "^2.22.1",
55 "eslint-plugin-node": "^11.1.0",
56 "eslint-plugin-prettier": "^3.4.0",
57 "fs-extra": "^10.0.0",
58 "husky": "^6.0.0",
59 "jest": "^26.6.3",
60 "jest-snapshot-serializer-ansi": "^1.0.0",
61 "prettier": "^2.2.1"
62 },
63 "config": {
64 "commitizen": {
65 "path": "./node_modules/cz-conventional-changelog"
66 }
67 },
68 "jest": {
69 "collectCoverage": true,
70 "collectCoverageFrom": [
71 "lib/**/*.js"
72 ],
73 "setupFiles": [
74 "./testSetup.js"
75 ],
76 "snapshotSerializers": [
77 "jest-snapshot-serializer-ansi"
78 ],
79 "testEnvironment": "node"
80 },
81 "keywords": [
82 "lint",
83 "git",
84 "staged",
85 "eslint",
86 "prettier",
87 "stylelint",
88 "code",
89 "quality",
90 "check",
91 "format",
92 "validate"
93 ]
94}