source: frontend/node_modules/@babel/eslint-parser/package.json

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 1.4 KB
Line 
1{
2 "name": "@babel/eslint-parser",
3 "version": "7.28.6",
4 "description": "ESLint parser that allows for linting of experimental syntax transformed by Babel",
5 "author": "The Babel Team (https://babel.dev/team)",
6 "license": "MIT",
7 "repository": {
8 "type": "git",
9 "url": "https://github.com/babel/babel.git",
10 "directory": "eslint/babel-eslint-parser"
11 },
12 "publishConfig": {
13 "access": "public"
14 },
15 "bugs": {
16 "url": "https://github.com/babel/babel/issues"
17 },
18 "homepage": "https://babel.dev/",
19 "engines": {
20 "node": "^10.13.0 || ^12.13.0 || >=14.0.0"
21 },
22 "main": "./lib/index.cjs",
23 "type": "module",
24 "types": "./types.d.cts",
25 "exports": {
26 ".": {
27 "default": "./lib/index.cjs",
28 "types": "./types.d.cts"
29 },
30 "./experimental-worker": {
31 "default": "./lib/experimental-worker.cjs",
32 "types": "./types.d.cts"
33 },
34 "./package.json": "./package.json"
35 },
36 "peerDependencies": {
37 "@babel/core": "^7.11.0",
38 "eslint": "^7.5.0 || ^8.0.0 || ^9.0.0"
39 },
40 "dependencies": {
41 "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1",
42 "eslint-visitor-keys": "^2.1.0",
43 "semver": "^6.3.1"
44 },
45 "devDependencies": {
46 "@babel/core": "^7.28.6",
47 "@babel/helper-fixtures": "^7.28.6",
48 "@types/eslint": "^8.56.2",
49 "@types/estree": "^1.0.5",
50 "@typescript-eslint/scope-manager": "^6.19.0",
51 "dedent": "^1.5.3",
52 "eslint": "^9.21.0",
53 "typescript-eslint": "^8.48.0"
54 }
55}
Note: See TracBrowser for help on using the repository browser.