2020-07-05 15:48:51 +02:00
|
|
|
{
|
|
|
|
"name": "programming-challenges",
|
2020-12-09 12:42:12 +01:00
|
|
|
"version": "1.0.0",
|
2023-08-10 11:28:54 +02:00
|
|
|
"description": "programming-challenges brings 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",
|
2023-07-02 17:28:54 +02:00
|
|
|
"url": "https://github.com/theoludwig/programming-challenges"
|
2020-12-09 12:42:12 +01:00
|
|
|
},
|
2021-06-09 20:31:45 +02:00
|
|
|
"engines": {
|
2024-11-18 01:04:51 +01:00
|
|
|
"node": ">=20.11.0",
|
2023-10-23 23:16:24 +02:00
|
|
|
"npm": ">=10.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": {
|
2023-07-02 17:32:11 +02:00
|
|
|
"start": "node --enable-source-maps build/index.js",
|
2024-01-30 01:21:19 +01:00
|
|
|
"build": "swc ./cli --out-dir ./build --strip-leading-paths --delete-dir-on-start",
|
2024-01-30 01:34:53 +01:00
|
|
|
"build:dev": "swc ./cli --out-dir ./build --strip-leading-paths --delete-dir-on-start --watch",
|
2024-11-18 01:04:51 +01:00
|
|
|
"lint:typescript": "tsc --noEmit",
|
2021-06-09 20:31:45 +02:00
|
|
|
"lint:editorconfig": "editorconfig-checker",
|
2022-08-30 13:42:44 +02:00
|
|
|
"lint:markdown": "markdownlint-cli2",
|
2024-11-18 01:04:51 +01:00
|
|
|
"lint:eslint": "eslint ./cli --max-warnings 0",
|
|
|
|
"test": "cross-env NODE_ENV=test node --enable-source-maps --test \"build/**/*.test.js\""
|
2020-07-05 15:48:51 +02:00
|
|
|
},
|
2020-12-27 12:26:10 +01:00
|
|
|
"dependencies": {
|
2023-07-02 17:24:48 +02:00
|
|
|
"chalk": "5.3.0",
|
|
|
|
"clipanion": "3.2.1",
|
2024-11-18 01:04:51 +01:00
|
|
|
"date-and-time": "3.6.0",
|
|
|
|
"execa": "9.5.1",
|
2023-10-23 23:16:24 +02:00
|
|
|
"log-symbols": "6.0.0",
|
2024-11-18 01:04:51 +01:00
|
|
|
"ora": "8.1.1",
|
|
|
|
"replace-in-file": "8.2.0",
|
|
|
|
"table": "6.8.2",
|
2023-08-10 11:28:54 +02:00
|
|
|
"typanion": "3.14.0",
|
2024-11-18 01:04:51 +01:00
|
|
|
"validate-npm-package-name": "6.0.0"
|
2020-12-27 12:26:10 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-11-18 01:04:51 +01:00
|
|
|
"@swc/cli": "0.5.0",
|
|
|
|
"@swc/core": "1.9.2",
|
|
|
|
"@tsconfig/strictest": "2.0.5",
|
2023-12-26 23:05:18 +01:00
|
|
|
"@types/mock-fs": "4.13.4",
|
|
|
|
"@types/ms": "0.7.34",
|
2024-11-18 01:04:51 +01:00
|
|
|
"@types/node": "22.9.0",
|
2024-01-30 01:21:19 +01:00
|
|
|
"@types/sinon": "17.0.3",
|
2023-12-26 23:05:18 +01:00
|
|
|
"@types/validate-npm-package-name": "4.0.2",
|
2024-11-18 01:04:51 +01:00
|
|
|
"typescript-eslint": "8.14.0",
|
2023-07-20 22:00:11 +02:00
|
|
|
"cross-env": "7.0.3",
|
2024-11-18 01:04:51 +01:00
|
|
|
"editorconfig-checker": "6.0.0",
|
|
|
|
"eslint": "9.15.0",
|
|
|
|
"eslint-config-conventions": "17.0.1",
|
|
|
|
"eslint-plugin-import-x": "4.4.2",
|
|
|
|
"eslint-plugin-promise": "7.1.0",
|
|
|
|
"eslint-plugin-unicorn": "56.0.0",
|
|
|
|
"globals": "15.12.0",
|
|
|
|
"get-stream": "9.0.1",
|
|
|
|
"markdownlint-cli2": "0.15.0",
|
|
|
|
"markdownlint-rule-relative-links": "3.0.0",
|
|
|
|
"mock-fs": "5.4.1",
|
2021-12-07 11:35:47 +01:00
|
|
|
"ms": "2.1.3",
|
2024-11-18 01:04:51 +01:00
|
|
|
"sinon": "19.0.2",
|
|
|
|
"typescript": "5.6.3"
|
2020-07-05 15:48:51 +02:00
|
|
|
}
|
|
|
|
}
|