forked from TooTallNate/plist.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 915 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
44
{
"name": "plist",
"description": "Mac OS X Plist parser/builder for Node.js and browsers",
"version": "3.0.1",
"author": "Nathan Rajlich <[email protected]>",
"contributors": [
"Hans Huebner <[email protected]>",
"Pierre Metrailler",
"Mike Reinstein <[email protected]>",
"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": {
"base64-js": "^1.2.3",
"xmlbuilder": "^9.0.7",
"xmldom": "0.1.x"
},
"devDependencies": {
"browserify": "^16.1.1",
"mocha": "^5.0.4",
"multiline": "^1.0.2",
"zuul": "^3.10.1"
},
"scripts": {
"test": "make test"
},
"engines": {
"node": ">=6"
}
}