Spaces:
Sleeping
Sleeping
| { | |
| "name": "eslint-scope", | |
| "description": "ECMAScript scope analyzer for ESLint", | |
| "homepage": "https://github.com/eslint/js/blob/main/packages/eslint-scope/README.md", | |
| "main": "./dist/eslint-scope.cjs", | |
| "types": "./lib/index.d.cts", | |
| "type": "module", | |
| "exports": { | |
| ".": { | |
| "import": { | |
| "types": "./lib/index.d.ts", | |
| "default": "./lib/index.js" | |
| }, | |
| "require": { | |
| "types": "./lib/index.d.cts", | |
| "default": "./dist/eslint-scope.cjs" | |
| } | |
| }, | |
| "./package.json": "./package.json" | |
| }, | |
| "version": "9.1.2", | |
| "engines": { | |
| "node": "^20.19.0 || ^22.13.0 || >=24" | |
| }, | |
| "repository": { | |
| "type": "git", | |
| "url": "https://github.com/eslint/js.git", | |
| "directory": "packages/eslint-scope" | |
| }, | |
| "funding": "https://opencollective.com/eslint", | |
| "keywords": [ | |
| "eslint" | |
| ], | |
| "bugs": { | |
| "url": "https://github.com/eslint/js/issues" | |
| }, | |
| "license": "BSD-2-Clause", | |
| "scripts": { | |
| "build": "rollup -c", | |
| "lint:types": "attw --pack", | |
| "pretest": "npm run build", | |
| "test": "node Makefile.js test && npm run test:types", | |
| "test:types": "tsc -p tsconfig.json && tsc -p tests/types/tsconfig.json" | |
| }, | |
| "files": [ | |
| "LICENSE", | |
| "README.md", | |
| "lib", | |
| "dist/eslint-scope.cjs" | |
| ], | |
| "dependencies": { | |
| "@types/esrecurse": "^4.3.1", | |
| "@types/estree": "^1.0.8", | |
| "esrecurse": "^4.3.0", | |
| "estraverse": "^5.2.0" | |
| }, | |
| "devDependencies": { | |
| "@typescript-eslint/parser": "^8.7.0", | |
| "chai": "^6.0.0", | |
| "eslint": ">=10.0.0-rc.0 <10.0.0 || ^10.0.0", | |
| "eslint-visitor-keys": "^5.0.1", | |
| "espree": "^11.2.0", | |
| "npm-license": "^0.3.3", | |
| "shelljs": "^0.8.5" | |
| } | |
| } | |