forked from assistunion/xml-stream
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 743 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 743 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
{
"name": "xml-stream",
"description": "XML stream to JavaScript object converter based on Expat.",
"keywords": [
"xml",
"parser",
"expat"
],
"version": "0.5.0",
"author": "AssistUnion <info@assistunion.com>",
"maintainers": [
"Anatoly Ressin <anatoly@assistunion.com>",
"Dimitry Solovyov <dimituri@gmail.com> (http://100-hour.com)"
],
"scripts": {
"test": "mocha tests"
},
"repository": {
"type": "git",
"url": "git://github.com/assistunion/xml-stream.git"
},
"dependencies": {
"iconv-lite": "^0.7.2",
"node-expat": "2.4.1",
"readable-stream": "^4.1.0"
},
"directories": {
"lib": "./lib"
},
"main": "index",
"devDependencies": {
"mocha": "^10.0.0"
}
}