-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.25 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"author": "Jon Cursi <[email protected]>",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/joncursi/eslint-config/issues"
},
"contributors": [
"Jon Cursi <[email protected]>"
],
"dependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@typescript-eslint/eslint-plugin": "4.1.0",
"@typescript-eslint/parser": "4.1.0",
"eslint": "7.9.0",
"eslint-config-airbnb": "18.2.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-disable": "2.0.1",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-immutable": "1.0.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jest": "24.0.1",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-lodash": "7.1.0",
"eslint-plugin-new-with-error": "2.0.0",
"eslint-plugin-no-loops": "0.3.0",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.20.6",
"eslint-plugin-react-hooks": "4.1.2",
"eslint-plugin-security": "1.4.0",
"markdownlint-cli": "0.23.2",
"npm-run-all": "4.1.5",
"prettier": "2.1.1",
"typescript": "4.0.2"
},
"description": "⚙️ My preferred configs for CommitLint, ESLint, MarkdownLint, Prettier, and TypeScript.",
"devDependencies": {
"husky": "4.3.0",
"lint-staged": "10.3.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"homepage": "https://github.com/joncursi/eslint-config#readme",
"keywords": [
"commitlint",
"eslint",
"eslint-config",
"markdownlint",
"prettier",
"typescript"
],
"license": "MIT",
"lint-staged": {
"*.{js}": "npm run test:lint:js",
"*.{js,json,md}": [
"prettier --write",
"git add"
],
"*.{md}": "npm run test:lint:md"
},
"main": "index.js",
"name": "@joncursi/eslint-config",
"repository": {
"type": "git",
"url": "git+https://github.com/joncursi/eslint-config.git"
},
"scripts": {
"deploy": "bundle exec fastlane npm production",
"test": "npm-run-all test:**",
"test:lint:js": "eslint . --ext .js --quiet",
"test:lint:md": "markdownlint README.md --config markdownlint.config.json"
},
"version": "6.0.0"
}