From ae187b6d75c8079da0be1dc288613bad8466fe61 Mon Sep 17 00:00:00 2001 From: RaindropsSys Date: Tue, 24 Oct 2023 17:43:37 +0200 Subject: Initial commit --- desktop/node_modules/plist/package.json | 44 +++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 desktop/node_modules/plist/package.json (limited to 'desktop/node_modules/plist/package.json') diff --git a/desktop/node_modules/plist/package.json b/desktop/node_modules/plist/package.json new file mode 100644 index 0000000..ec86a62 --- /dev/null +++ b/desktop/node_modules/plist/package.json @@ -0,0 +1,44 @@ +{ + "name": "plist", + "description": "Apple's property list parser/builder for Node.js and browsers", + "version": "3.1.0", + "author": "Nathan Rajlich ", + "contributors": [ + "Hans Huebner ", + "Pierre Metrailler", + "Mike Reinstein ", + "Vladimir Tsvang", + "Mathieu D'Amours" + ], + "repository": { + "type": "git", + "url": "git://github.com/TooTallNate/node-plist.git" + }, + "license": "MIT", + "keywords": [ + "apple", + "browser", + "mac", + "plist", + "parser", + "xml" + ], + "main": "index.js", + "dependencies": { + "@xmldom/xmldom": "^0.8.8", + "base64-js": "^1.5.1", + "xmlbuilder": "^15.1.1" + }, + "devDependencies": { + "browserify": "^17.0.0", + "mocha": "^9.2.2", + "multiline": "^2.0.0", + "zuul": "3.12.0" + }, + "scripts": { + "test": "make test" + }, + "engines": { + "node": ">=10.4.0" + } +} -- cgit