Changeset 79a0317 for imaps-frontend/node_modules/eslint-plugin-react
- Timestamp:
- 01/21/25 03:08:24 (3 days ago)
- Branches:
- main
- Parents:
- 0c6b92a
- Location:
- imaps-frontend/node_modules/eslint-plugin-react
- Files:
-
- 12 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/eslint-plugin-react/node_modules/doctrine/package.json
r0c6b92a r79a0317 1 1 { 2 "name": "doctrine", 2 "_from": "doctrine@2.1.0", 3 "_id": "doctrine@2.1.0", 4 "_inBundle": false, 5 "_integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", 6 "_location": "/eslint-plugin-react/doctrine", 7 "_phantomChildren": {}, 8 "_requested": { 9 "type": "version", 10 "registry": true, 11 "raw": "doctrine@2.1.0", 12 "name": "doctrine", 13 "escapedName": "doctrine", 14 "rawSpec": "2.1.0", 15 "saveSpec": null, 16 "fetchSpec": "2.1.0" 17 }, 18 "_requiredBy": [ 19 "/eslint-plugin-react" 20 ], 21 "_resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", 22 "_shasum": "5cd01fc101621b42c4cd7f5d1a66243716d3f39d", 23 "_spec": "doctrine@2.1.0", 24 "_where": "/home/stevetosak/Proekt/IMaps/imaps-frontend/node_modules/eslint-plugin-react", 25 "bugs": { 26 "url": "https://github.com/eslint/doctrine/issues" 27 }, 28 "bundleDependencies": false, 29 "dependencies": { 30 "esutils": "^2.0.2" 31 }, 32 "deprecated": false, 3 33 "description": "JSDoc parser", 4 "homepage": "https://github.com/eslint/doctrine",5 "main": "lib/doctrine.js",6 "version": "2.1.0",7 "engines": {8 "node": ">=0.10.0"9 },10 "directories": {11 "lib": "./lib"12 },13 "files": [14 "lib"15 ],16 "maintainers": [17 {18 "name": "Nicholas C. Zakas",19 "email": "nicholas+npm@nczconsulting.com",20 "web": "https://www.nczonline.net"21 },22 {23 "name": "Yusuke Suzuki",24 "email": "utatane.tea@gmail.com",25 "web": "https://github.com/Constellation"26 }27 ],28 "repository": "eslint/doctrine",29 34 "devDependencies": { 30 35 "coveralls": "^2.11.2", … … 41 46 "should": "^5.0.1" 42 47 }, 48 "directories": { 49 "lib": "./lib" 50 }, 51 "engines": { 52 "node": ">=0.10.0" 53 }, 54 "files": [ 55 "lib" 56 ], 57 "homepage": "https://github.com/eslint/doctrine", 43 58 "license": "Apache-2.0", 59 "main": "lib/doctrine.js", 60 "maintainers": [ 61 { 62 "name": "Nicholas C. Zakas", 63 "email": "nicholas+npm@nczconsulting.com", 64 "url": "https://www.nczonline.net" 65 }, 66 { 67 "name": "Yusuke Suzuki", 68 "email": "utatane.tea@gmail.com", 69 "url": "https://github.com/Constellation" 70 } 71 ], 72 "name": "doctrine", 73 "repository": { 74 "type": "git", 75 "url": "git+https://github.com/eslint/doctrine.git" 76 }, 44 77 "scripts": { 45 "pretest": "npm run lint", 46 "test": "nyc mocha", 78 "alpharelease": "eslint-prerelease alpha", 79 "betarelease": "eslint-prerelease beta", 80 "ci-release": "eslint-ci-release", 47 81 "coveralls": "nyc report --reporter=text-lcov | coveralls", 48 82 "lint": "eslint lib/", 83 "pretest": "npm run lint", 49 84 "release": "eslint-release", 50 "ci-release": "eslint-ci-release", 51 "alpharelease": "eslint-prerelease alpha", 52 "betarelease": "eslint-prerelease beta" 85 "test": "nyc mocha" 53 86 }, 54 "dependencies": { 55 "esutils": "^2.0.2" 56 } 87 "version": "2.1.0" 57 88 } -
imaps-frontend/node_modules/eslint-plugin-react/package.json
r0c6b92a r79a0317 1 1 { 2 "name": "eslint-plugin-react", 3 "version": "7.37.2", 4 "author": "Yannick Croissant <yannick.croissant+npm@gmail.com>", 5 "description": "React specific linting rules for ESLint", 6 "main": "index.js", 7 "types": "index.d.ts", 8 "scripts": { 9 "clean-built-types": "rm -f $(find . -maxdepth 1 -type f -name '*.d.ts*') $(find lib -type f -name '*.d.ts*' ! -name 'types.d.ts')", 10 "prebuild-types": "npm run clean-built-types", 11 "build-types": "tsc -p build.tsconfig.json", 12 "prepack": "npm run build-types && npmignore --auto --commentLines=autogenerated", 13 "prelint": "npm run lint:docs", 14 "lint:docs": "markdownlint \"**/*.md\"", 15 "postlint:docs": "npm run update:eslint-docs -- --check", 16 "lint": "eslint .", 17 "postlint": "npm run type-check", 18 "pretest": "npm run lint", 19 "test": "npm run unit-test", 20 "posttest": "npx npm@'>= 10.2' audit --production", 21 "type-check": "tsc", 22 "unit-test": "istanbul cover node_modules/mocha/bin/_mocha tests/lib/**/*.js tests/util/**/*.js tests/index.js tests/flat-config.js", 23 "update:eslint-docs": "eslint-doc-generator" 2 "_development": true, 3 "_from": "eslint-plugin-react@7.37.2", 4 "_id": "eslint-plugin-react@7.37.2", 5 "_inBundle": false, 6 "_integrity": "sha512-EsTAnj9fLVr/GZleBLFbj/sSuXeWmp1eXIN60ceYnZveqEaUCyW4X+Vh4WTdUhCkW4xutXYqTXCUSyqD4rB75w==", 7 "_location": "/eslint-plugin-react", 8 "_phantomChildren": { 9 "esutils": "2.0.3", 10 "loose-envify": "1.4.0", 11 "object-assign": "4.1.1", 12 "react-is": "16.13.1" 24 13 }, 25 "repository": { 26 "type": "git", 27 "url": "https://github.com/jsx-eslint/eslint-plugin-react" 14 "_requested": { 15 "type": "version", 16 "registry": true, 17 "raw": "eslint-plugin-react@7.37.2", 18 "name": "eslint-plugin-react", 19 "escapedName": "eslint-plugin-react", 20 "rawSpec": "7.37.2", 21 "saveSpec": null, 22 "fetchSpec": "7.37.2" 28 23 }, 29 "homepage": "https://github.com/jsx-eslint/eslint-plugin-react", 30 "bugs": "https://github.com/jsx-eslint/eslint-plugin-react/issues", 24 "_requiredBy": [ 25 "#DEV:/" 26 ], 27 "_resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.37.2.tgz", 28 "_shasum": "cd0935987876ba2900df2f58339f6d92305acc7a", 29 "_spec": "eslint-plugin-react@7.37.2", 30 "_where": "/home/stevetosak/Proekt/IMaps/imaps-frontend", 31 "author": { 32 "name": "Yannick Croissant", 33 "email": "yannick.croissant+npm@gmail.com" 34 }, 35 "bugs": { 36 "url": "https://github.com/jsx-eslint/eslint-plugin-react/issues" 37 }, 38 "bundleDependencies": false, 31 39 "dependencies": { 32 40 "array-includes": "^3.1.8", … … 49 57 "string.prototype.repeat": "^1.0.0" 50 58 }, 59 "deprecated": false, 60 "description": "React specific linting rules for ESLint", 51 61 "devDependencies": { 52 62 "@babel/core": "^7.25.9", … … 82 92 "typescript-eslint-parser": "^20.1.1" 83 93 }, 84 "peerDependencies": {85 "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7"86 },87 94 "engines": { 88 95 "node": ">=4" 89 96 }, 97 "homepage": "https://github.com/jsx-eslint/eslint-plugin-react", 90 98 "keywords": [ 91 99 "eslint", … … 95 103 ], 96 104 "license": "MIT", 105 "main": "index.js", 106 "name": "eslint-plugin-react", 107 "peerDependencies": { 108 "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7" 109 }, 97 110 "publishConfig": { 98 111 "ignore": [ … … 115 128 "!*.d.ts.map" 116 129 ] 117 } 130 }, 131 "repository": { 132 "type": "git", 133 "url": "git+https://github.com/jsx-eslint/eslint-plugin-react.git" 134 }, 135 "scripts": { 136 "build-types": "tsc -p build.tsconfig.json", 137 "clean-built-types": "rm -f $(find . -maxdepth 1 -type f -name '*.d.ts*') $(find lib -type f -name '*.d.ts*' ! -name 'types.d.ts')", 138 "lint": "eslint .", 139 "lint:docs": "markdownlint \"**/*.md\"", 140 "postlint": "npm run type-check", 141 "postlint:docs": "npm run update:eslint-docs -- --check", 142 "posttest": "npx npm@'>= 10.2' audit --production", 143 "prebuild-types": "npm run clean-built-types", 144 "prelint": "npm run lint:docs", 145 "prepack": "npm run build-types && npmignore --auto --commentLines=autogenerated", 146 "pretest": "npm run lint", 147 "test": "npm run unit-test", 148 "type-check": "tsc", 149 "unit-test": "istanbul cover node_modules/mocha/bin/_mocha tests/lib/**/*.js tests/util/**/*.js tests/index.js tests/flat-config.js", 150 "update:eslint-docs": "eslint-doc-generator" 151 }, 152 "types": "index.d.ts", 153 "version": "7.37.2" 118 154 }
Note:
See TracChangeset
for help on using the changeset viewer.