package.json 2.18 KB
Newer Older
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
{
  "name": "eslint-plugin-react",
  "version": "7.19.0",
  "author": "Yannick Croissant <yannick.croissant+npm@gmail.com>",
  "description": "React specific linting rules for ESLint",
  "main": "index.js",
  "scripts": {
    "coveralls": "cat ./coverage/lcov.info | coveralls",
    "lint": "eslint ./",
    "postlint": "npm run type-check",
    "pretest": "npm run lint",
    "test": "npm run unit-test",
    "type-check": "tsc",
    "unit-test": "istanbul cover node_modules/mocha/bin/_mocha tests/lib/**/*.js tests/util/**/*.js tests/index.js",
    "generate-list-of-rules": "md-magic --path README.md",
    "generate-list-of-rules:check": "npm run generate-list-of-rules && git diff --exit-code README.md"
  },
  "files": [
    "LICENSE",
    "README.md",
    "index.js",
    "lib"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/yannickcr/eslint-plugin-react"
  },
  "homepage": "https://github.com/yannickcr/eslint-plugin-react",
  "bugs": "https://github.com/yannickcr/eslint-plugin-react/issues",
  "dependencies": {
    "array-includes": "^3.1.1",
    "doctrine": "^2.1.0",
    "has": "^1.0.3",
    "jsx-ast-utils": "^2.2.3",
    "object.entries": "^1.1.1",
    "object.fromentries": "^2.0.2",
    "object.values": "^1.1.1",
    "prop-types": "^15.7.2",
    "resolve": "^1.15.1",
    "semver": "^6.3.0",
    "string.prototype.matchall": "^4.0.2",
    "xregexp": "^4.3.0"
  },
  "devDependencies": {
    "@types/eslint": "^6.1.8",
    "@types/estree": "0.0.42",
    "@types/node": "^13.7.4",
    "babel-eslint": "^8.2.6",
    "coveralls": "^3.0.9",
    "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0",
    "eslint-config-airbnb-base": "^13.2.0",
    "eslint-plugin-eslint-plugin": "^2.2.1",
    "eslint-plugin-import": "^2.20.1",
    "istanbul": "^0.4.5",
    "markdown-magic": "^1.0.0",
    "mocha": "^5.2.0",
    "sinon": "^7.5.0",
    "typescript": "^3.8.2",
    "typescript-eslint-parser": "^20.1.1"
  },
  "peerDependencies": {
    "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0"
  },
  "engines": {
    "node": ">=4"
  },
  "keywords": [
    "eslint",
    "eslint-plugin",
    "eslintplugin",
    "react"
  ],
  "license": "MIT",
  "greenkeeper": {
    "ignore": [
      "semver"
    ]
  }
}