source: imaps-frontend/node_modules/eslint-plugin-react/package.json

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 3.3 KB
Line 
1{
2 "name": "eslint-plugin-react",
3 "version": "7.35.0",
4 "author": "Yannick Croissant <yannick.croissant+npm@gmail.com>",
5 "description": "React specific linting rules for ESLint",
6 "main": "index.js",
7 "scripts": {
8 "prepack": "npmignore --auto --commentLines=autogenerated",
9 "prelint": "npm run lint:docs",
10 "lint:docs": "markdownlint \"**/*.md\"",
11 "postlint:docs": "npm run update:eslint-docs -- --check",
12 "lint": "eslint .",
13 "postlint": "npm run type-check",
14 "pretest": "npm run lint",
15 "test": "npm run unit-test",
16 "posttest": "aud --production",
17 "type-check": "tsc",
18 "unit-test": "istanbul cover node_modules/mocha/bin/_mocha tests/lib/**/*.js tests/util/**/*.js tests/index.js tests/flat-config.js",
19 "update:eslint-docs": "eslint-doc-generator"
20 },
21 "repository": {
22 "type": "git",
23 "url": "https://github.com/jsx-eslint/eslint-plugin-react"
24 },
25 "homepage": "https://github.com/jsx-eslint/eslint-plugin-react",
26 "bugs": "https://github.com/jsx-eslint/eslint-plugin-react/issues",
27 "dependencies": {
28 "array-includes": "^3.1.8",
29 "array.prototype.findlast": "^1.2.5",
30 "array.prototype.flatmap": "^1.3.2",
31 "array.prototype.tosorted": "^1.1.4",
32 "doctrine": "^2.1.0",
33 "es-iterator-helpers": "^1.0.19",
34 "estraverse": "^5.3.0",
35 "hasown": "^2.0.2",
36 "jsx-ast-utils": "^2.4.1 || ^3.0.0",
37 "minimatch": "^3.1.2",
38 "object.entries": "^1.1.8",
39 "object.fromentries": "^2.0.8",
40 "object.values": "^1.2.0",
41 "prop-types": "^15.8.1",
42 "resolve": "^2.0.0-next.5",
43 "semver": "^6.3.1",
44 "string.prototype.matchall": "^4.0.11",
45 "string.prototype.repeat": "^1.0.0"
46 },
47 "devDependencies": {
48 "@babel/core": "^7.24.9",
49 "@babel/eslint-parser": "^7.24.8",
50 "@babel/plugin-syntax-decorators": "^7.24.7",
51 "@babel/plugin-syntax-do-expressions": "^7.24.7",
52 "@babel/plugin-syntax-function-bind": "^7.24.7",
53 "@babel/preset-react": "^7.24.7",
54 "@types/eslint": "=7.2.10",
55 "@types/estree": "0.0.52",
56 "@types/node": "^4.9.5",
57 "@typescript-eslint/parser": "^2.34.0 || ^3.10.1 || ^4.0.0 || ^5.0.0",
58 "aud": "^2.0.4",
59 "babel-eslint": "^8 || ^9 || ^10.1.0",
60 "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7",
61 "eslint-config-airbnb-base": "^15.0.0",
62 "eslint-doc-generator": "^1.7.1",
63 "eslint-plugin-eslint-plugin": "^2.3.0 || ^3.5.3 || ^4.0.1 || ^5.0.5",
64 "eslint-plugin-import": "^2.29.1",
65 "eslint-remote-tester": "^3.0.1",
66 "eslint-remote-tester-repositories": "^1.0.1",
67 "eslint-scope": "^3.7.3",
68 "espree": "^3.5.4",
69 "glob": "=10.3.7",
70 "istanbul": "^0.4.5",
71 "jackspeak": "=2.1.1",
72 "ls-engines": "^0.8.1",
73 "markdownlint-cli": "^0.8.0 || ^0.32.2",
74 "mocha": "^5.2.0",
75 "npmignore": "^0.3.1",
76 "sinon": "^7.5.0",
77 "typescript": "^3.9.9",
78 "typescript-eslint-parser": "^20.1.1"
79 },
80 "peerDependencies": {
81 "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7"
82 },
83 "engines": {
84 "node": ">=4"
85 },
86 "keywords": [
87 "eslint",
88 "eslint-plugin",
89 "eslintplugin",
90 "react"
91 ],
92 "license": "MIT",
93 "publishConfig": {
94 "ignore": [
95 ".github/",
96 "!lib",
97 "docs/",
98 "test/",
99 "tests/",
100 "*.md",
101 "*.config.js",
102 ".eslint-doc-generatorrc.js",
103 ".eslintrc",
104 ".editorconfig",
105 "tsconfig.json",
106 ".markdownlint*",
107 "types"
108 ]
109 }
110}
Note: See TracBrowser for help on using the repository browser.