From 183d15ea617ce983302b1fe2467c0840c3435881 Mon Sep 17 00:00:00 2001 From: Richard Zampieri Date: Wed, 31 Jul 2024 18:50:21 -0700 Subject: [PATCH] refactor: update engine version update --- jest.config.js | 12 ++++----- package.json | 68 +++++++++++++++++++++++++------------------------- 2 files changed, 40 insertions(+), 40 deletions(-) diff --git a/jest.config.js b/jest.config.js index 15c84ea..f2caa0e 100644 --- a/jest.config.js +++ b/jest.config.js @@ -1,7 +1,7 @@ module.exports = { - transform: { - "^.+\\.(t|j)sx?$": "@swc/jest", - }, - testEnvironment: 'node', - testMatch: ['**/*.spec.ts', '**/*.test.ts'], -}; \ No newline at end of file + transform: { + "^.+\\.(t|j)sx?$": "@swc/jest", + }, + testEnvironment: "node", + testMatch: ["**/*.spec.ts", "**/*.test.ts"], +}; diff --git a/package.json b/package.json index f4f4db4..6550c22 100644 --- a/package.json +++ b/package.json @@ -1,36 +1,36 @@ { - "name": "@expressots/boost-ts", - "version": "1.0.0", - "description": "Expressots: Boost is a collection of libraries for the TypeScript programming language designed to enhance its capabilities across various domains. (@boost-ts)", - "types": "./dist/index.d.ts", - "license": "MIT", - "keywords": [], - "repository": { - "type": "git", - "url": "https://github.com/expressots/boost-ts.git" - }, - "publishConfig": { - "access": "public" - }, - "engines": { - "node": ">=18.10.0" - }, - "author": "Richard Zampieri", - "scripts": { - "start": "tsnd --respawn --transpile-only --ignore-watch node_modules src/main.ts", - "build": "rimraf dist && tsc -p tsconfig.json", - "build:prod": "npm run build && node dist/main.js", - "test": "jest" - }, - "devDependencies": { - "@swc/core": "1.3.37", - "@swc/jest": "0.2.24", - "@types/jest": "29.5.0", - "jest": "29.5.0", - "ts-node-dev": "2.0.0", - "typescript": "5.0.2" - }, - "dependencies": { - "rimraf": "4.4.0" - } + "name": "@expressots/boost-ts", + "version": "1.0.0", + "description": "Expressots: Boost is a collection of libraries for the TypeScript programming language designed to enhance its capabilities across various domains. (@boost-ts)", + "types": "./dist/index.d.ts", + "license": "MIT", + "keywords": [], + "repository": { + "type": "git", + "url": "https://github.com/expressots/boost-ts.git" + }, + "publishConfig": { + "access": "public" + }, + "engines": { + "node": ">=18.0.0" + }, + "author": "Richard Zampieri", + "scripts": { + "start": "tsnd --respawn --transpile-only --ignore-watch node_modules src/main.ts", + "build": "rimraf dist && tsc -p tsconfig.json", + "build:prod": "npm run build && node dist/main.js", + "test": "jest" + }, + "devDependencies": { + "@swc/core": "1.3.37", + "@swc/jest": "0.2.24", + "@types/jest": "29.5.0", + "jest": "29.5.0", + "ts-node-dev": "2.0.0", + "typescript": "5.0.2" + }, + "dependencies": { + "rimraf": "^6.0.1" + } }