forked from TooTallNate/plist.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 906 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
{
"name": "plist",
"description": "Mac OS X Plist parser/builder for Node.js and browsers",
"version": "1.2.0",
"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": "lib/plist.js",
"dependencies": {
"base64-js": "1.1.2",
"xmlbuilder": "8.2.2",
"xmldom": "0.1.x",
"util-deprecate": "1.0.2"
},
"devDependencies": {
"browserify": "13.0.1",
"mocha": "2.4.5",
"multiline": "1.0.2",
"zuul": "3.10.1"
},
"scripts": {
"test": "make test"
}
}