-
Notifications
You must be signed in to change notification settings - Fork 123
/
package.json
43 lines (43 loc) · 910 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "plist",
"description": "Apple's property list parser/builder for Node.js and browsers",
"version": "3.1.0",
"author": "Nathan Rajlich <nathan@tootallnate.net>",
"contributors": [
"Hans Huebner <hans.huebner@gmail.com>",
"Pierre Metrailler",
"Mike Reinstein <reinstein.mike@gmail.com>",
"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": "^10.2.0",
"zuul": "3.12.0"
},
"scripts": {
"test": "make test"
},
"engines": {
"node": ">=10.4.0"
}
}