mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2024-10-29 22:17:23 +01:00
67 lines
1.7 KiB
JSON
67 lines
1.7 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.",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/Divlo/programming-challenges"
|
|
},
|
|
"engines": {
|
|
"node": ">=16.0.0",
|
|
"npm": ">=8.0.0"
|
|
},
|
|
"ts-standard": {
|
|
"ignore": [
|
|
"build",
|
|
"node_modules",
|
|
"templates",
|
|
"challenges"
|
|
],
|
|
"envs": [
|
|
"node",
|
|
"jest"
|
|
],
|
|
"report": "stylish"
|
|
},
|
|
"main": "build/index.js",
|
|
"bin": "build/index.js",
|
|
"scripts": {
|
|
"start": "node build/index.js",
|
|
"build": "rimraf ./build && tsc",
|
|
"test": "jest",
|
|
"lint:commit": "commitlint",
|
|
"lint:editorconfig": "editorconfig-checker",
|
|
"lint:markdown": "markdownlint '**/*.md' --dot --ignore node_modules",
|
|
"lint:typescript": "ts-standard"
|
|
},
|
|
"dependencies": {
|
|
"chalk": "4.1.2",
|
|
"clipanion": "3.0.1",
|
|
"date-and-time": "2.0.1",
|
|
"execa": "5.1.1",
|
|
"ora": "5.4.1",
|
|
"replace-in-file": "6.2.0",
|
|
"table": "6.7.2",
|
|
"typanion": "3.5.0",
|
|
"validate-npm-package-name": "3.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "13.2.1",
|
|
"@commitlint/config-conventional": "13.2.0",
|
|
"@types/date-and-time": "0.13.0",
|
|
"@types/jest": "27.0.2",
|
|
"@types/mock-fs": "4.13.1",
|
|
"@types/node": "16.10.8",
|
|
"@types/validate-npm-package-name": "3.0.3",
|
|
"editorconfig-checker": "4.0.2",
|
|
"jest": "27.2.5",
|
|
"markdownlint-cli": "0.29.0",
|
|
"mock-fs": "5.1.1",
|
|
"rimraf": "3.0.2",
|
|
"ts-jest": "27.0.5",
|
|
"ts-standard": "10.0.0",
|
|
"typescript": "4.4.4"
|
|
}
|
|
}
|