1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2024-12-08 00:45:29 +01:00
programming-challenges/package.json

67 lines
2.0 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": {
2024-11-18 01:04:51 +01:00
"node": ">=20.11.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",
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",
"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",
"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",
"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",
"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
}
}