mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2024-10-29 22:17:23 +01:00
73 lines
2.1 KiB
JSON
73 lines
2.1 KiB
JSON
{
|
|
"name": "programming-challenges",
|
|
"version": "1.0.0",
|
|
"description": "programming-challenges brings together lots of programming exercises and challenges to improve your algorithmic logic.",
|
|
"private": true,
|
|
"type": "module",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Divlo/programming-challenges"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0",
|
|
"npm": ">=9.0.0"
|
|
},
|
|
"main": "build/index.js",
|
|
"bin": "build/index.js",
|
|
"scripts": {
|
|
"start": "node build/index.js",
|
|
"build": "rimraf ./build && swc ./cli --out-dir ./build",
|
|
"build:dev": "swc ./src --out-dir ./build --watch",
|
|
"build:typescript": "tsc",
|
|
"lint:commit": "commitlint",
|
|
"lint:editorconfig": "editorconfig-checker",
|
|
"lint:markdown": "markdownlint-cli2",
|
|
"lint:eslint": "eslint \"cli\" --ignore-path \".gitignore\"",
|
|
"test": "tap"
|
|
},
|
|
"dependencies": {
|
|
"chalk": "5.2.0",
|
|
"clipanion": "3.2.0",
|
|
"date-and-time": "3.0.0",
|
|
"execa": "7.1.1",
|
|
"log-symbols": "5.1.0",
|
|
"ora": "6.3.1",
|
|
"replace-in-file": "6.3.5",
|
|
"table": "6.8.1",
|
|
"typanion": "3.12.1",
|
|
"validate-npm-package-name": "5.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "17.6.3",
|
|
"@commitlint/config-conventional": "17.6.3",
|
|
"@swc/cli": "0.1.62",
|
|
"@swc/core": "1.3.59",
|
|
"@tsconfig/strictest": "2.0.1",
|
|
"@types/date-and-time": "0.13.0",
|
|
"@types/mock-fs": "4.13.1",
|
|
"@types/ms": "0.7.31",
|
|
"@types/node": "20.2.1",
|
|
"@types/sinon": "10.0.15",
|
|
"@types/tap": "15.0.8",
|
|
"@types/validate-npm-package-name": "4.0.0",
|
|
"@typescript-eslint/eslint-plugin": "5.59.6",
|
|
"@typescript-eslint/parser": "5.59.6",
|
|
"editorconfig-checker": "5.0.1",
|
|
"eslint": "8.41.0",
|
|
"eslint-config-conventions": "9.0.0",
|
|
"eslint-plugin-import": "2.27.5",
|
|
"eslint-plugin-promise": "6.1.1",
|
|
"eslint-plugin-unicorn": "47.0.0",
|
|
"get-stream": "6.0.1",
|
|
"markdownlint-cli2": "0.7.1",
|
|
"markdownlint-rule-relative-links": "1.2.0",
|
|
"mock-fs": "5.2.0",
|
|
"ms": "2.1.3",
|
|
"rimraf": "5.0.1",
|
|
"sinon": "15.1.0",
|
|
"tap": "16.3.4",
|
|
"typescript": "5.0.4"
|
|
}
|
|
}
|