Files
freeCodeCamp/packages/challenge-linter/package.json
renovate[bot] eb14138c81 chore(deps): update eslint (#67053)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-04-22 12:08:36 +05:30

48 lines
1.2 KiB
JSON

{
"name": "@freecodecamp/challenge-linter",
"version": "0.0.1",
"description": "The freeCodeCamp.org open-source codebase and curriculum",
"license": "BSD-3-Clause",
"private": true,
"main": "index.js",
"type": "module",
"bin": {
"challenge-linter": "./cli.js"
},
"exports": {
".": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/freeCodeCamp/freeCodeCamp.git"
},
"bugs": {
"url": "https://github.com/freeCodeCamp/freeCodeCamp/issues"
},
"homepage": "https://github.com/freeCodeCamp/freeCodeCamp#readme",
"author": "freeCodeCamp <team@freecodecamp.org>",
"scripts": {
"build": "tsc",
"lint": "eslint --max-warnings 0",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"type-check": "tsc --noEmit"
},
"devDependencies": {
"@freecodecamp/eslint-config": "workspace:*",
"@types/js-yaml": "4.0.9",
"@types/yargs": "17.0.35",
"@vitest/ui": "3.2.4",
"eslint": "9.39.4",
"markdownlint": "0.40.0",
"prismjs": "1.30.0",
"typescript": "5.9.3",
"vitest": "3.2.4",
"yargs": "17.7.2"
},
"dependencies": {
"markdown-it": "^14.1.1"
}
}