forked from rubenv/node-xlsx-writer
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
50 lines (50 loc) · 1.19 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
{
"name": "xlsx-writestream",
"description": "Streaming XLSX writer. Forked from rubenv/node-xlsx-writer.",
"version": "0.5.1",
"homepage": "https://github.com/STRML/node-xlsx-writestream",
"author": "STRML (Samuel Reed)",
"repository": {
"type": "git",
"url": "git://github.com/STRML/node-xlsx-writestream.git"
},
"bugs": {
"url": "https://github.com/STRML/node-xlsx-writestream/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/STRML/node-xlsx-writestream/blob/master/LICENSE"
}
],
"main": "index.js",
"engines": {
"node": ">= 4.0.0"
},
"scripts": {
"benchmark": "grunt benchmark",
"test": "grunt test",
"prepublish": "grunt build"
},
"devDependencies": {
"coffee-script": "~1.6.3",
"excel": "0.0.60",
"grunt": "~0.4.0",
"grunt-benchmark": "~0.2.0",
"grunt-contrib-clean": "~0.4.0",
"grunt-contrib-coffee": "~0.6.0",
"grunt-contrib-watch": "~0.3.1",
"grunt-mkdir": "~0.1.0",
"grunt-mocha-cli": "~1.0.1",
"grunt-release": "~0.3.1",
"underscore": "~1.4.4"
},
"keywords": [
"xlsx",
"excel",
"spreadsheet"
],
"dependencies": {
"archiver": "2.1.0"
}
}