UNPKG

1.41 kBJSONView Raw
1{
2 "name": "@immowelt/eslint-config-immowelt-react",
3 "version": "3.1.0",
4 "description": "ESLint shareable react config",
5 "main": "index.js",
6 "repository": "https://github.com/ImmoweltGroup/eslint-config-immowelt-react.git",
7 "author": "Kevin Ruff <kevin.ruff@immonet.de>",
8 "license": "MIT",
9 "private": false,
10 "engines": {
11 "node": ">=8.11.4",
12 "yarn": ">=1.6.0"
13 },
14 "dependencies": {
15 "@immowelt/eslint-config-immowelt-base": "1.1.0",
16 "babel-eslint": "^10.0.1",
17 "eslint": "^5.6.1",
18 "eslint-config-airbnb": "^17.1.0",
19 "eslint-plugin-babel": "^5.2.1",
20 "eslint-plugin-import": "^2.14.0",
21 "eslint-plugin-jsx-a11y": "^6.1.2",
22 "eslint-plugin-react": "^7.11.1"
23 },
24 "devDependencies": {
25 "semantic-release": "^15.9.17"
26 },
27 "scripts": {
28 "lint": "eslint .",
29 "release": "semantic-release"
30 },
31 "publishConfig": {
32 "access": "public"
33 },
34 "release": {
35 "branch": "master",
36 "analyzeCommits": {
37 "releaseRules": [
38 {
39 "type": "BREAKING",
40 "release": "major"
41 },
42 {
43 "type": "FEATURE",
44 "release": "minor"
45 },
46 {
47 "type": "BUGFIX",
48 "release": "patch"
49 },
50 {
51 "type": "SECURITY",
52 "release": "patch"
53 }
54 ]
55 }
56 },
57 "keywords": [
58 "eslint",
59 "config",
60 "immowelt",
61 "react"
62 ]
63}