UNPKG

2.35 kBJSONView Raw
1{
2 "name": "lint-staged",
3 "version": "10.5.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 "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 "husky": {
30 "hooks": {
31 "pre-commit": "./bin/lint-staged.js"
32 }
33 },
34 "dependencies": {
35 "chalk": "^4.1.0",
36 "cli-truncate": "^2.1.0",
37 "commander": "^6.0.0",
38 "cosmiconfig": "^7.0.0",
39 "debug": "^4.1.1",
40 "dedent": "^0.7.0",
41 "enquirer": "^2.3.6",
42 "execa": "^4.0.3",
43 "listr2": "^2.6.0",
44 "log-symbols": "^4.0.0",
45 "micromatch": "^4.0.2",
46 "normalize-path": "^3.0.0",
47 "please-upgrade-node": "^3.2.0",
48 "string-argv": "0.3.1",
49 "stringify-object": "^3.3.0"
50 },
51 "devDependencies": {
52 "@babel/core": "^7.11.4",
53 "@babel/plugin-proposal-object-rest-spread": "^7.11.0",
54 "@babel/preset-env": "^7.11.0",
55 "babel-eslint": "10.1.0",
56 "babel-jest": "^26.3.0",
57 "consolemock": "^1.1.0",
58 "eslint": "^7.7.0",
59 "eslint-config-prettier": "^6.11.0",
60 "eslint-plugin-import": "^2.22.0",
61 "eslint-plugin-node": "^11.1.0",
62 "eslint-plugin-prettier": "^3.1.4",
63 "fs-extra": "^9.0.1",
64 "husky": "^4.2.5",
65 "jest": "^26.4.2",
66 "jest-snapshot-serializer-ansi": "^1.0.0",
67 "prettier": "^2.1.0"
68 },
69 "config": {
70 "commitizen": {
71 "path": "./node_modules/cz-conventional-changelog"
72 }
73 },
74 "jest": {
75 "collectCoverage": true,
76 "collectCoverageFrom": [
77 "lib/**/*.js"
78 ],
79 "setupFiles": [
80 "./testSetup.js"
81 ],
82 "snapshotSerializers": [
83 "jest-snapshot-serializer-ansi"
84 ],
85 "testEnvironment": "node"
86 },
87 "keywords": [
88 "lint",
89 "git",
90 "staged",
91 "eslint",
92 "prettier",
93 "stylelint",
94 "code",
95 "quality",
96 "check",
97 "format",
98 "validate"
99 ]
100}