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

73 lines
2.1 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",
"description": "programming-challenges brings together lots of 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": {
2022-12-30 00:55:21 +01:00
"node": ">=18.0.0",
2023-05-13 18:48:23 +02:00
"npm": ">=9.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",
2023-07-02 17:24:48 +02:00
"lint:eslint": "eslint ./cli --ignore-path .gitignore",
"test": "tap"
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.2",
2023-04-02 22:25:13 +02:00
"execa": "7.1.1",
2022-09-22 16:16:21 +02:00
"log-symbols": "5.1.0",
2023-05-21 11:28:53 +02:00
"ora": "6.3.1",
2023-07-02 17:24:48 +02:00
"replace-in-file": "7.0.1",
2022-12-30 00:55:21 +01:00
"table": "6.8.1",
2023-07-02 17:24:48 +02:00
"typanion": "3.13.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-07-02 17:24:48 +02:00
"@commitlint/cli": "17.6.6",
"@commitlint/config-conventional": "17.6.6",
2023-04-02 22:25:13 +02:00
"@swc/cli": "0.1.62",
2023-07-02 17:24:48 +02:00
"@swc/core": "1.3.67",
2023-05-13 18:48:23 +02:00
"@tsconfig/strictest": "2.0.1",
2020-12-27 12:26:10 +01:00
"@types/date-and-time": "0.13.0",
"@types/mock-fs": "4.13.1",
"@types/ms": "0.7.31",
2023-07-02 17:24:48 +02:00
"@types/node": "20.3.3",
2023-05-21 11:28:53 +02:00
"@types/sinon": "10.0.15",
2023-04-02 22:25:13 +02:00
"@types/tap": "15.0.8",
2022-08-30 13:42:44 +02:00
"@types/validate-npm-package-name": "4.0.0",
2023-07-02 17:24:48 +02:00
"@typescript-eslint/eslint-plugin": "5.60.1",
"@typescript-eslint/parser": "5.60.1",
"editorconfig-checker": "5.1.1",
"eslint": "8.44.0",
"eslint-config-conventions": "10.0.0",
2023-04-02 22:25:13 +02:00
"eslint-plugin-import": "2.27.5",
2022-12-30 00:55:21 +01:00
"eslint-plugin-promise": "6.1.1",
2023-05-13 18:48:23 +02:00
"eslint-plugin-unicorn": "47.0.0",
2023-07-02 17:24:48 +02:00
"get-stream": "7.0.1",
"markdownlint-cli2": "0.8.1",
"markdownlint-rule-relative-links": "2.1.0",
2022-12-30 00:55:21 +01:00
"mock-fs": "5.2.0",
"ms": "2.1.3",
2023-05-21 11:28:53 +02:00
"rimraf": "5.0.1",
2023-07-02 17:24:48 +02:00
"sinon": "15.2.0",
"tap": "16.3.7",
2023-05-13 18:48:23 +02:00
"typescript": "5.0.4"
2020-07-05 15:48:51 +02:00
}
}