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.",
|
2022-04-23 18:41:14 +02:00
|
|
|
"private": true,
|
|
|
|
"type": "module",
|
2020-12-09 12:42:12 +01:00
|
|
|
"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
|
|
|
},
|
|
|
|
"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",
|
2022-02-19 18:30:29 +01:00
|
|
|
"build": "rimraf ./build && swc ./cli --out-dir ./build && tsc",
|
2022-04-23 18:41:14 +02:00
|
|
|
"build:dev": "swc ./src --out-dir ./build --watch",
|
2021-06-09 20:31:45 +02:00
|
|
|
"lint:commit": "commitlint",
|
|
|
|
"lint:editorconfig": "editorconfig-checker",
|
2022-08-30 13:42:44 +02:00
|
|
|
"lint:markdown": "markdownlint-cli2",
|
2022-02-19 18:30:29 +01:00
|
|
|
"lint:typescript": "eslint \"**/*.{js,jsx,ts,tsx}\"",
|
2022-04-23 18:41:14 +02:00
|
|
|
"test": "tap"
|
2020-07-05 15:48:51 +02:00
|
|
|
},
|
2020-12-27 12:26:10 +01:00
|
|
|
"dependencies": {
|
2022-04-23 18:41:14 +02:00
|
|
|
"chalk": "5.0.1",
|
2021-08-27 13:03:41 +02:00
|
|
|
"clipanion": "3.0.1",
|
2022-08-30 13:42:44 +02:00
|
|
|
"date-and-time": "2.4.1",
|
2022-04-23 18:41:14 +02:00
|
|
|
"execa": "6.1.0",
|
2022-08-30 13:42:44 +02:00
|
|
|
"ora": "6.1.2",
|
|
|
|
"replace-in-file": "6.3.5",
|
2022-02-19 18:30:29 +01:00
|
|
|
"table": "6.8.0",
|
2022-08-30 13:42:44 +02:00
|
|
|
"typanion": "3.9.0",
|
2022-04-23 18:41:14 +02:00
|
|
|
"validate-npm-package-name": "4.0.0"
|
2020-12-27 12:26:10 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-08-30 13:42:44 +02:00
|
|
|
"@commitlint/cli": "17.1.2",
|
|
|
|
"@commitlint/config-conventional": "17.1.0",
|
2022-04-23 18:41:14 +02:00
|
|
|
"@swc/cli": "0.1.57",
|
2022-08-30 13:42:44 +02:00
|
|
|
"@swc/core": "1.2.245",
|
|
|
|
"@types/sinon": "10.0.13",
|
|
|
|
"@types/tap": "15.0.7",
|
2020-12-27 12:26:10 +01:00
|
|
|
"@types/date-and-time": "0.13.0",
|
2021-08-27 13:03:41 +02:00
|
|
|
"@types/mock-fs": "4.13.1",
|
2021-12-07 11:35:47 +01:00
|
|
|
"@types/ms": "0.7.31",
|
2022-08-30 13:42:44 +02:00
|
|
|
"@types/node": "18.7.14",
|
|
|
|
"@types/validate-npm-package-name": "4.0.0",
|
|
|
|
"@typescript-eslint/eslint-plugin": "5.36.0",
|
|
|
|
"@typescript-eslint/parser": "5.36.0",
|
2021-06-09 20:31:45 +02:00
|
|
|
"editorconfig-checker": "4.0.2",
|
2022-08-30 13:42:44 +02:00
|
|
|
"eslint": "8.23.0",
|
|
|
|
"eslint-config-conventions": "3.0.0",
|
2022-04-23 18:41:14 +02:00
|
|
|
"eslint-plugin-import": "2.26.0",
|
2022-08-30 13:42:44 +02:00
|
|
|
"eslint-plugin-promise": "6.0.1",
|
|
|
|
"eslint-plugin-unicorn": "43.0.2",
|
2021-11-30 21:42:43 +01:00
|
|
|
"get-stream": "6.0.1",
|
2022-08-30 13:42:44 +02:00
|
|
|
"markdownlint-cli2": "0.5.1",
|
|
|
|
"mock-fs": "5.1.4",
|
2021-12-07 11:35:47 +01:00
|
|
|
"ms": "2.1.3",
|
2021-06-09 20:31:45 +02:00
|
|
|
"rimraf": "3.0.2",
|
2022-08-30 13:42:44 +02:00
|
|
|
"sinon": "14.0.0",
|
|
|
|
"tap": "16.3.0",
|
|
|
|
"typescript": "4.8.2"
|
2020-07-05 15:48:51 +02:00
|
|
|
}
|
|
|
|
}
|