Changeset 79a0317 for imaps-frontend/node_modules/@eslint-community
- Timestamp:
- 01/21/25 03:08:24 (3 days ago)
- Branches:
- main
- Parents:
- 0c6b92a
- Location:
- imaps-frontend/node_modules/@eslint-community
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/@eslint-community/eslint-utils/package.json
r0c6b92a r79a0317 1 1 { 2 "_from": "@eslint-community/eslint-utils@4.4.1", 3 "_id": "@eslint-community/eslint-utils@4.4.1", 4 "_inBundle": false, 5 "_integrity": "sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==", 6 "_location": "/@eslint-community/eslint-utils", 7 "_phantomChildren": {}, 8 "_requested": { 9 "type": "version", 10 "registry": true, 11 "raw": "@eslint-community/eslint-utils@4.4.1", 2 12 "name": "@eslint-community/eslint-utils", 3 "version": "4.4.1", 4 "description": "Utilities for ESLint plugins.", 5 "keywords": [ 6 "eslint" 7 ], 8 "homepage": "https://github.com/eslint-community/eslint-utils#readme", 9 "bugs": { 10 "url": "https://github.com/eslint-community/eslint-utils/issues" 13 "escapedName": "@eslint-community%2feslint-utils", 14 "scope": "@eslint-community", 15 "rawSpec": "4.4.1", 16 "saveSpec": null, 17 "fetchSpec": "4.4.1" 18 }, 19 "_requiredBy": [ 20 "/eslint" 21 ], 22 "_resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz", 23 "_shasum": "d1145bf2c20132d6400495d6df4bf59362fd9d56", 24 "_spec": "@eslint-community/eslint-utils@4.4.1", 25 "_where": "/home/stevetosak/Proekt/IMaps/imaps-frontend/node_modules/eslint", 26 "author": { 27 "name": "Toru Nagashima" 28 }, 29 "bugs": { 30 "url": "https://github.com/eslint-community/eslint-utils/issues" 31 }, 32 "bundleDependencies": false, 33 "dependencies": { 34 "eslint-visitor-keys": "^3.4.3" 35 }, 36 "deprecated": false, 37 "description": "Utilities for ESLint plugins.", 38 "devDependencies": { 39 "@eslint-community/eslint-plugin-mysticatea": "^15.6.1", 40 "c8": "^8.0.1", 41 "dot-prop": "^7.2.0", 42 "eslint": "^8.57.1", 43 "installed-check": "^8.0.1", 44 "knip": "^5.33.3", 45 "mocha": "^9.2.2", 46 "npm-run-all2": "^6.2.3", 47 "opener": "^1.5.2", 48 "prettier": "2.8.8", 49 "rimraf": "^3.0.2", 50 "rollup": "^2.79.2", 51 "rollup-plugin-sourcemaps": "^0.6.3", 52 "semver": "^7.6.3", 53 "vitepress": "^1.4.1", 54 "warun": "^1.0.0" 55 }, 56 "engines": { 57 "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 58 }, 59 "exports": { 60 ".": { 61 "import": "./index.mjs", 62 "require": "./index.js" 11 63 }, 12 "repository": { 13 "type": "git", 14 "url": "https://github.com/eslint-community/eslint-utils" 15 }, 16 "license": "MIT", 17 "author": "Toru Nagashima", 18 "sideEffects": false, 19 "exports": { 20 ".": { 21 "import": "./index.mjs", 22 "require": "./index.js" 23 }, 24 "./package.json": "./package.json" 25 }, 26 "main": "index", 27 "module": "index.mjs", 28 "files": [ 29 "index.*" 30 ], 31 "scripts": { 32 "prebuild": "npm run -s clean", 33 "build": "rollup -c", 34 "clean": "rimraf .nyc_output coverage index.*", 35 "coverage": "opener ./coverage/lcov-report/index.html", 36 "docs:build": "vitepress build docs", 37 "docs:watch": "vitepress dev docs", 38 "format": "npm run -s format:prettier -- --write", 39 "format:prettier": "prettier .", 40 "format:check": "npm run -s format:prettier -- --check", 41 "lint:eslint": "eslint .", 42 "lint:format": "npm run -s format:check", 43 "lint:installed-check": "installed-check -v -i installed-check -i npm-run-all2 -i knip", 44 "lint:knip": "knip", 45 "lint": "run-p lint:*", 46 "test": "c8 mocha --reporter dot \"test/*.mjs\"", 47 "preversion": "npm test && npm run -s build", 48 "postversion": "git push && git push --tags", 49 "prewatch": "npm run -s clean", 50 "watch": "warun \"{src,test}/**/*.mjs\" -- npm run -s test:mocha" 51 }, 52 "dependencies": { 53 "eslint-visitor-keys": "^3.4.3" 54 }, 55 "devDependencies": { 56 "@eslint-community/eslint-plugin-mysticatea": "^15.6.1", 57 "c8": "^8.0.1", 58 "dot-prop": "^7.2.0", 59 "eslint": "^8.57.1", 60 "installed-check": "^8.0.1", 61 "knip": "^5.33.3", 62 "mocha": "^9.2.2", 63 "npm-run-all2": "^6.2.3", 64 "opener": "^1.5.2", 65 "prettier": "2.8.8", 66 "rimraf": "^3.0.2", 67 "rollup": "^2.79.2", 68 "rollup-plugin-sourcemaps": "^0.6.3", 69 "semver": "^7.6.3", 70 "vitepress": "^1.4.1", 71 "warun": "^1.0.0" 72 }, 73 "peerDependencies": { 74 "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 75 }, 76 "engines": { 77 "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 78 }, 79 "funding": "https://opencollective.com/eslint" 64 "./package.json": "./package.json" 65 }, 66 "files": [ 67 "index.*" 68 ], 69 "funding": "https://opencollective.com/eslint", 70 "homepage": "https://github.com/eslint-community/eslint-utils#readme", 71 "keywords": [ 72 "eslint" 73 ], 74 "license": "MIT", 75 "main": "index", 76 "module": "index.mjs", 77 "name": "@eslint-community/eslint-utils", 78 "peerDependencies": { 79 "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 80 }, 81 "repository": { 82 "type": "git", 83 "url": "git+https://github.com/eslint-community/eslint-utils.git" 84 }, 85 "scripts": { 86 "build": "rollup -c", 87 "clean": "rimraf .nyc_output coverage index.*", 88 "coverage": "opener ./coverage/lcov-report/index.html", 89 "docs:build": "vitepress build docs", 90 "docs:watch": "vitepress dev docs", 91 "format": "npm run -s format:prettier -- --write", 92 "format:check": "npm run -s format:prettier -- --check", 93 "format:prettier": "prettier .", 94 "lint": "run-p lint:*", 95 "lint:eslint": "eslint .", 96 "lint:format": "npm run -s format:check", 97 "lint:installed-check": "installed-check -v -i installed-check -i npm-run-all2 -i knip", 98 "lint:knip": "knip", 99 "postversion": "git push && git push --tags", 100 "prebuild": "npm run -s clean", 101 "preversion": "npm test && npm run -s build", 102 "prewatch": "npm run -s clean", 103 "test": "c8 mocha --reporter dot \"test/*.mjs\"", 104 "watch": "warun \"{src,test}/**/*.mjs\" -- npm run -s test:mocha" 105 }, 106 "sideEffects": false, 107 "version": "4.4.1" 80 108 } -
imaps-frontend/node_modules/@eslint-community/regexpp/package.json
r0c6b92a r79a0317 1 1 { 2 "name": "@eslint-community/regexpp", 3 "version": "4.12.1", 4 "description": "Regular expression parser for ECMAScript.", 5 "keywords": [ 6 "regexp", 7 "regular", 8 "expression", 9 "parser", 10 "validator", 11 "ast", 12 "abstract", 13 "syntax", 14 "tree", 15 "ecmascript", 16 "es2015", 17 "es2016", 18 "es2017", 19 "es2018", 20 "es2019", 21 "es2020", 22 "es2021", 23 "annexB" 2 "_from": "@eslint-community/regexpp@4.12.1", 3 "_id": "@eslint-community/regexpp@4.12.1", 4 "_inBundle": false, 5 "_integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", 6 "_location": "/@eslint-community/regexpp", 7 "_phantomChildren": {}, 8 "_requested": { 9 "type": "version", 10 "registry": true, 11 "raw": "@eslint-community/regexpp@4.12.1", 12 "name": "@eslint-community/regexpp", 13 "escapedName": "@eslint-community%2fregexpp", 14 "scope": "@eslint-community", 15 "rawSpec": "4.12.1", 16 "saveSpec": null, 17 "fetchSpec": "4.12.1" 18 }, 19 "_requiredBy": [ 20 "/eslint" 24 21 ], 25 "homepage": "https://github.com/eslint-community/regexpp#readme", 22 "_resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", 23 "_shasum": "cfc6cffe39df390a3841cde2abccf92eaa7ae0e0", 24 "_spec": "@eslint-community/regexpp@4.12.1", 25 "_where": "/home/stevetosak/Proekt/IMaps/imaps-frontend/node_modules/eslint", 26 "author": { 27 "name": "Toru Nagashima" 28 }, 26 29 "bugs": { 27 30 "url": "https://github.com/eslint-community/regexpp/issues" 28 31 }, 29 "repository": { 30 "type": "git", 31 "url": "https://github.com/eslint-community/regexpp" 32 }, 33 "license": "MIT", 34 "author": "Toru Nagashima", 35 "exports": { 36 ".": { 37 "types": "./index.d.ts", 38 "import": "./index.mjs", 39 "default": "./index.js" 40 }, 41 "./package.json": "./package.json" 42 }, 43 "main": "index", 44 "files": [ 45 "index.*" 46 ], 47 "scripts": { 48 "prebuild": "npm run -s clean", 49 "build": "run-s build:*", 50 "build:tsc": "tsc --module es2015", 51 "build:rollup": "rollup -c", 52 "build:dts": "npm run -s build:tsc -- --removeComments false && dts-bundle --name @eslint-community/regexpp --main .temp/index.d.ts --out ../index.d.ts && prettier --write index.d.ts", 53 "clean": "rimraf .temp index.*", 54 "lint": "eslint . --ext .ts", 55 "test": "nyc _mocha \"test/*.ts\" --reporter dot --timeout 10000", 56 "debug": "mocha --require ts-node/register/transpile-only \"test/*.ts\" --reporter dot --timeout 10000", 57 "update:test": "ts-node scripts/update-fixtures.ts", 58 "update:unicode": "run-s update:unicode:*", 59 "update:unicode:ids": "ts-node scripts/update-unicode-ids.ts", 60 "update:unicode:props": "ts-node scripts/update-unicode-properties.ts", 61 "update:test262:extract": "ts-node -T scripts/extract-test262.ts", 62 "preversion": "npm test && npm run -s build", 63 "postversion": "git push && git push --tags", 64 "prewatch": "npm run -s clean", 65 "watch": "_mocha \"test/*.ts\" --require ts-node/register --reporter dot --timeout 10000 --watch-extensions ts --watch --growl" 66 }, 32 "bundleDependencies": false, 67 33 "dependencies": {}, 34 "deprecated": false, 35 "description": "Regular expression parser for ECMAScript.", 68 36 "devDependencies": { 69 37 "@eslint-community/eslint-plugin-mysticatea": "^15.5.1", … … 88 56 "engines": { 89 57 "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 90 } 58 }, 59 "exports": { 60 ".": { 61 "types": "./index.d.ts", 62 "import": "./index.mjs", 63 "default": "./index.js" 64 }, 65 "./package.json": "./package.json" 66 }, 67 "files": [ 68 "index.*" 69 ], 70 "homepage": "https://github.com/eslint-community/regexpp#readme", 71 "keywords": [ 72 "regexp", 73 "regular", 74 "expression", 75 "parser", 76 "validator", 77 "ast", 78 "abstract", 79 "syntax", 80 "tree", 81 "ecmascript", 82 "es2015", 83 "es2016", 84 "es2017", 85 "es2018", 86 "es2019", 87 "es2020", 88 "es2021", 89 "annexB" 90 ], 91 "license": "MIT", 92 "main": "index", 93 "name": "@eslint-community/regexpp", 94 "repository": { 95 "type": "git", 96 "url": "git+https://github.com/eslint-community/regexpp.git" 97 }, 98 "scripts": { 99 "build": "run-s build:*", 100 "build:dts": "npm run -s build:tsc -- --removeComments false && dts-bundle --name @eslint-community/regexpp --main .temp/index.d.ts --out ../index.d.ts && prettier --write index.d.ts", 101 "build:rollup": "rollup -c", 102 "build:tsc": "tsc --module es2015", 103 "clean": "rimraf .temp index.*", 104 "debug": "mocha --require ts-node/register/transpile-only \"test/*.ts\" --reporter dot --timeout 10000", 105 "lint": "eslint . --ext .ts", 106 "postversion": "git push && git push --tags", 107 "prebuild": "npm run -s clean", 108 "preversion": "npm test && npm run -s build", 109 "prewatch": "npm run -s clean", 110 "test": "nyc _mocha \"test/*.ts\" --reporter dot --timeout 10000", 111 "update:test": "ts-node scripts/update-fixtures.ts", 112 "update:test262:extract": "ts-node -T scripts/extract-test262.ts", 113 "update:unicode": "run-s update:unicode:*", 114 "update:unicode:ids": "ts-node scripts/update-unicode-ids.ts", 115 "update:unicode:props": "ts-node scripts/update-unicode-properties.ts", 116 "watch": "_mocha \"test/*.ts\" --require ts-node/register --reporter dot --timeout 10000 --watch-extensions ts --watch --growl" 117 }, 118 "version": "4.12.1" 91 119 }
Note:
See TracChangeset
for help on using the changeset viewer.