1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2024-07-18 02:20:12 +02:00
programming-challenges/package.json

71 lines
2.2 KiB
JSON
Raw Normal View History

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.",
"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
},
"engines": {
2023-08-10 11:28:54 +02:00
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"main": "build/index.js",
"bin": "build/index.js",
2020-07-05 15:48:51 +02:00
"scripts": {
"start": "node --enable-source-maps build/index.js",
2023-01-10 23:15:36 +01:00
"build": "rimraf ./build && swc ./cli --out-dir ./build",
"build:dev": "swc ./src --out-dir ./build --watch",
2023-01-10 23:15:36 +01:00
"build:typescript": "tsc",
"lint:commit": "commitlint",
"lint:editorconfig": "editorconfig-checker",
2022-08-30 13:42:44 +02:00
"lint:markdown": "markdownlint-cli2",
"lint:eslint": "eslint ./cli --max-warnings 0 --report-unused-disable-directives --ignore-path .gitignore",
"test": "cross-env NODE_ENV=test node --enable-source-maps --test build/"
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",
"date-and-time": "3.0.3",
2023-08-21 22:09:24 +02:00
"execa": "8.0.1",
"log-symbols": "6.0.0",
2023-12-26 23:05:18 +01:00
"ora": "8.0.1",
"replace-in-file": "7.0.2",
2022-12-30 00:55:21 +01:00
"table": "6.8.1",
2023-08-10 11:28:54 +02:00
"typanion": "3.14.0",
2022-12-30 00:55:21 +01:00
"validate-npm-package-name": "5.0.0"
2020-12-27 12:26:10 +01:00
},
"devDependencies": {
2023-12-26 23:05:18 +01:00
"@commitlint/cli": "18.4.3",
"@commitlint/config-conventional": "18.4.3",
"@swc/cli": "0.1.63",
"@swc/core": "1.3.101",
2023-09-16 14:38:47 +02:00
"@tsconfig/strictest": "2.0.2",
2023-12-26 23:05:18 +01:00
"@types/mock-fs": "4.13.4",
"@types/ms": "0.7.34",
"@types/node": "20.10.5",
"@types/sinon": "17.0.2",
"@types/validate-npm-package-name": "4.0.2",
"@typescript-eslint/eslint-plugin": "6.16.0",
"@typescript-eslint/parser": "6.16.0",
"cross-env": "7.0.3",
2023-12-26 23:05:18 +01:00
"editorconfig-checker": "5.1.2",
"eslint": "8.56.0",
"eslint-config-conventions": "13.1.0",
"eslint-plugin-import": "2.29.1",
2022-12-30 00:55:21 +01:00
"eslint-plugin-promise": "6.1.1",
2023-12-26 23:05:18 +01:00
"eslint-plugin-unicorn": "50.0.1",
2023-08-21 22:09:24 +02:00
"get-stream": "8.0.1",
2023-12-26 23:05:18 +01:00
"markdownlint-cli2": "0.11.0",
"markdownlint-rule-relative-links": "2.1.2",
2022-12-30 00:55:21 +01:00
"mock-fs": "5.2.0",
"ms": "2.1.3",
"rimraf": "5.0.5",
2023-12-26 23:05:18 +01:00
"sinon": "17.0.1",
"typescript": "5.3.3"
2020-07-05 15:48:51 +02:00
}
}