forked from nunukim/node-xlsx-stream
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.3 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "xlsx-stream",
"description": "Creates SpreadsheetML (.xlsx) files in sequence with streaming interface.",
"version": "0.1.2",
"homepage": "https://github.com/nunukim/node-xlsx-stream",
"author": {
"name": "Ryota Suzuki",
"email": "[email protected]",
"url": "http://galileoscope.com/"
},
"repository": {
"type": "git",
"url": "git://github.com/nunukim/node-xlsx-stream.git"
},
"bugs": {
"url": "https://github.com/nunukim/node-xlsx-stream/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/nunukim/node-xlsx-stream/blob/master/LICENSE"
}
],
"main": "lib/index.js",
"engines": {
"node": "~ 0.8.0"
},
"scripts": {},
"devDependencies": {
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-watch": "~0.5.3",
"grunt-contrib-coffee": "~0.7.0",
"grunt-release": "~0.6.0",
"grunt-vows-runner": "~0.6.0",
"grunt-mkdir": "~0.1.1",
"grunt": "~0.4.0",
"coffee-script": "~1.6.3",
"vows": "~0.7.0",
"excel-parser": "~0.2.1",
"concat-stream": "~1.2.1"
},
"dependencies": {
"lodash": "~ 1.3.0",
"through": "~ 2.3.4",
"duplexer": "~ 0.1.1",
"archiver": "~0.4.10"
},
"keywords": [
"xlsx",
"excel",
"stream",
"spreadsheet",
"SpreadsheetML"
]
}