From 5713f99aaec6b1a14d41415dc11b46f23713a005 Mon Sep 17 00:00:00 2001 From: Omission Create Bot Date: Tue, 16 Jun 2026 05:00:38 +0800 Subject: [PATCH] fix: Added missing package.json fields: license, bugs --- package.json | 42 ++++++++++++++++++++++-------------------- 1 file changed, 22 insertions(+), 20 deletions(-) diff --git a/package.json b/package.json index 7807ad7..f9fa5c6 100644 --- a/package.json +++ b/package.json @@ -1,21 +1,23 @@ { - "name": "node-xml", - "version": "1.0.2", - "directories": { - "lib": "./lib" - }, - "main": "./lib/node-xml", - "engines": { - "node" : ">=0.1.93" - }, - "dependencies": { - }, - "description": "An xml parser for node.js written in Javascript.", - "author": "Rob Righter ", - "homepage": "https://github.com/robrighter/node-xml", - "repository" : - { - "type" : "git", - "url" : "git://github.com/robrighter/node-xml.git" - } -} \ No newline at end of file + "name": "node-xml", + "version": "1.0.2", + "directories": { + "lib": "./lib" + }, + "main": "./lib/node-xml", + "engines": { + "node": ">=0.1.93" + }, + "dependencies": {}, + "description": "An xml parser for node.js written in Javascript.", + "author": "Rob Righter ", + "homepage": "https://github.com/robrighter/node-xml", + "repository": { + "type": "git", + "url": "git://github.com/robrighter/node-xml.git" + }, + "license": "MIT", + "bugs": { + "url": "git://github.com/robrighter/node-xml/issues" + } +}