mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-07 06:02:06 -04:00
48 lines
1.2 KiB
JSON
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"
|
|
}
|
|
}
|