From 170faf7d018bac969d4467f3816236452b1091cf Mon Sep 17 00:00:00 2001 From: aki Date: Wed, 23 Apr 2025 22:09:35 +0800 Subject: [PATCH] fix(package): format scripts section and add js-yaml to devDependencies --- package.json | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 13182ec..fe46870 100644 --- a/package.json +++ b/package.json @@ -3,10 +3,10 @@ "version": "1.0.0", "description": "", "main": "index.js", - "scripts": { - "start": "node src/index.js", - "test": "jest" - }, + "scripts": { + "start": "node src/index.js", + "test": "jest" + }, "keywords": [], "author": "", "license": "ISC", @@ -17,6 +17,7 @@ "winston": "^3.17.0" }, "devDependencies": { - "jest": "^29.7.0" + "jest": "^29.7.0", + "js-yaml": "^4.1.0" } }