mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.4 KiB
58 lines
1.4 KiB
{
|
|
"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",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"import": "./lib/index.js",
|
|
"require": "./dist/eslint-scope.cjs"
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"version": "9.0.0",
|
|
"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",
|
|
"build:update-version": "node tools/update-version.js",
|
|
"prepublishOnly": "npm run build:update-version && npm run build",
|
|
"pretest": "npm run build",
|
|
"test": "node Makefile.js test"
|
|
},
|
|
"files": [
|
|
"LICENSE",
|
|
"README.md",
|
|
"lib",
|
|
"dist/eslint-scope.cjs"
|
|
],
|
|
"dependencies": {
|
|
"esrecurse": "^4.3.0",
|
|
"estraverse": "^5.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/parser": "^8.7.0",
|
|
"chai": "^6.0.0",
|
|
"eslint-visitor-keys": "^5.0.0",
|
|
"espree": "^11.0.0",
|
|
"npm-license": "^0.3.3",
|
|
"rollup": "^2.52.7",
|
|
"shelljs": "^0.8.5",
|
|
"typescript": "^5.4.2"
|
|
}
|
|
}
|
|
|