forked from znerol/node-xmlshim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 845 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
{
"name": "xmlshim",
"version": "0.2.2",
"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": "[email protected]"
},
"bugs": {
"url": "https://github.com/znerol/node-xmlshim/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:znerol/node-xmlshim.git"
},
"dependencies": {
"jsdom": "^6.5.1",
"libxmljs": "^0.19.3"
},
"devDependencies": {
"browserify": "^14.0.0",
"nodeunit": "0.11.x"
}
}