forked from znerol/node-xmlshim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 821 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 821 Bytes
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
{ "name" : "xmlshim"
, "version" : "0.0.9"
, "description" : "Provides DOMParser, XMLSerializer and DOMImplementation wrappers in the browser and emulates them on the server-side"
, "keywords" :
[ "XML"
, "DOM"
, "DOMParser"
, "XMLSerializer"
, "createDocument"
, "browserify"
]
, "main" : "./index.js"
, "browserify" : "./browser.js"
, "scripts":
{ "test": "./node_modules/nodeunit/bin/nodeunit test"
}
, "author" :
{ "name" : "Lorenz Schori"
, "email" : "lo+xmlshim@znerol.ch"
}
, "bugs" :
{ "url" : "https://github.com/znerol/node-xmlshim/issues"
}
, "repository" :
{ "type" : "git"
, "url" : "git@github.com:znerol/node-xmlshim.git"
}
, "dependencies" :
{ "jsdom" : "6.x"
, "libxmljs" : "0.18.0"
}
, "devDependencies" :
{ "browserify" : "13.x"
, "nodeunit" : "0.9.x"
}
}