From 342a4249eeb43547aace69051e38d216e78db679 Mon Sep 17 00:00:00 2001 From: acheron Date: Fri, 7 Jul 2023 10:33:24 +0200 Subject: [PATCH] Remove TS dependencies from tests --- tests/idl-build/package.json | 31 ++++++++++++++----------------- 1 file changed, 14 insertions(+), 17 deletions(-) diff --git a/tests/idl-build/package.json b/tests/idl-build/package.json index 167b106589..3807440ae8 100644 --- a/tests/idl-build/package.json +++ b/tests/idl-build/package.json @@ -1,19 +1,16 @@ { - "scripts": { - "lint:fix": "prettier */*.js \"*/**/*{.js,.ts}\" -w", - "lint": "prettier */*.js \"*/**/*{.js,.ts}\" --check" - }, - "dependencies": { - "@project-serum/anchor": "^0.24.2" - }, - "devDependencies": { - "chai": "^4.3.4", - "mocha": "^9.0.3", - "ts-mocha": "^8.0.0", - "@types/bn.js": "^5.1.0", - "@types/chai": "^4.3.0", - "@types/mocha": "^9.0.0", - "typescript": "^4.3.5", - "prettier": "^2.6.2" - } + "name": "idl-build", + "version": "0.28.0", + "license": "(MIT OR Apache-2.0)", + "homepage": "https://github.com/coral-xyz/anchor#readme", + "bugs": { + "url": "https://github.com/coral-xyz/anchor/issues" + }, + "repository": { + "type": "git", + "url": "https://github.com/coral-xyz/anchor.git" + }, + "engines": { + "node": ">=17" + } }