forked from danielwhelansb/xml-object-stream
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 669 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 669 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
{
"author": "Sean Hess <sean@i.tv>",
"name": "xml-object-stream",
"description": "Low-memory streaming xml parser for node.js. Returns each node as an object. Uses node-expat",
"version": "0.2.0",
"repository": {
"type": "git",
"url": "git://github.com/idottv/xml-object-stream.git"
},
"main": "index.js",
"scripts": {
"test": "mocha -R spec --compilers coffee:coffee-script test.coffee",
"prepublish": "coffee -c index.coffee"
},
"dependencies": {
"node-expat": "~1.6.1"
},
"devDependencies": {
"mocha": "~1.4.2",
"coffee-script": "~1.3.3"
},
"optionalDependencies": {},
"engines": {
"node": "0.8.x"
}
}