UNPKG

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