2020-07-05 15:48:51 +02:00
|
|
|
{
|
|
|
|
"name": "programming-challenges",
|
2020-12-09 12:42:12 +01:00
|
|
|
"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",
|
2021-11-10 18:57:10 +01:00
|
|
|
"url": "https://github.com/Divlo/programming-challenges"
|
2020-12-09 12:42:12 +01:00
|
|
|
},
|
2021-06-09 20:31:45 +02:00
|
|
|
"engines": {
|
2021-07-03 18:40:17 +02:00
|
|
|
"node": ">=16.0.0",
|
2021-10-13 21:43:45 +02:00
|
|
|
"npm": ">=8.0.0"
|
2021-06-09 20:31:45 +02:00
|
|
|
},
|
|
|
|
"ts-standard": {
|
|
|
|
"ignore": [
|
|
|
|
"build",
|
|
|
|
"node_modules",
|
|
|
|
"templates",
|
|
|
|
"challenges"
|
|
|
|
],
|
|
|
|
"envs": [
|
|
|
|
"node",
|
|
|
|
"jest"
|
|
|
|
],
|
|
|
|
"report": "stylish"
|
|
|
|
},
|
|
|
|
"main": "build/index.js",
|
|
|
|
"bin": "build/index.js",
|
2020-07-05 15:48:51 +02:00
|
|
|
"scripts": {
|
2021-06-09 20:31:45 +02:00
|
|
|
"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"
|
2020-07-05 15:48:51 +02:00
|
|
|
},
|
2020-12-27 12:26:10 +01:00
|
|
|
"dependencies": {
|
2021-08-27 13:03:41 +02:00
|
|
|
"chalk": "4.1.2",
|
|
|
|
"clipanion": "3.0.1",
|
2021-10-13 21:43:45 +02:00
|
|
|
"date-and-time": "2.0.1",
|
2021-06-09 20:31:45 +02:00
|
|
|
"execa": "5.1.1",
|
2021-07-03 18:40:17 +02:00
|
|
|
"ora": "5.4.1",
|
2021-11-09 16:45:42 +01:00
|
|
|
"replace-in-file": "6.3.2",
|
|
|
|
"table": "6.7.3",
|
|
|
|
"typanion": "3.7.1",
|
2020-12-09 12:42:12 +01:00
|
|
|
"validate-npm-package-name": "3.0.0"
|
2020-12-27 12:26:10 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-11-30 21:42:43 +01:00
|
|
|
"@commitlint/cli": "15.0.0",
|
|
|
|
"@commitlint/config-conventional": "15.0.0",
|
2020-12-27 12:26:10 +01:00
|
|
|
"@types/date-and-time": "0.13.0",
|
2021-11-30 21:42:43 +01:00
|
|
|
"@types/jest": "27.0.3",
|
2021-08-27 13:03:41 +02:00
|
|
|
"@types/mock-fs": "4.13.1",
|
2021-11-30 21:42:43 +01:00
|
|
|
"@types/node": "16.11.11",
|
2021-07-03 18:40:17 +02:00
|
|
|
"@types/validate-npm-package-name": "3.0.3",
|
2021-06-09 20:31:45 +02:00
|
|
|
"editorconfig-checker": "4.0.2",
|
2021-11-30 21:42:43 +01:00
|
|
|
"get-stream": "6.0.1",
|
|
|
|
"jest": "27.4.2",
|
|
|
|
"markdownlint-cli": "0.30.0",
|
2021-11-09 16:45:42 +01:00
|
|
|
"mock-fs": "5.1.2",
|
2021-06-09 20:31:45 +02:00
|
|
|
"rimraf": "3.0.2",
|
2021-11-09 16:45:42 +01:00
|
|
|
"ts-jest": "27.0.7",
|
2021-11-30 21:42:43 +01:00
|
|
|
"ts-standard": "11.0.0",
|
|
|
|
"typescript": "4.5.2"
|
2020-07-05 15:48:51 +02:00
|
|
|
}
|
|
|
|
}
|