forked from thanos-irodotou/node-xlsx-stream
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.12 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
{
"name": "@brandwatch/xlsx-stream",
"description": "Creates SpreadsheetML (.xlsx) files in sequence with streaming interface.",
"version": "0.2.1",
"homepage": "https://github.com/BrandwatchLtd/node-xlsx-stream",
"author": {
"name": "Ryota Suzuki",
"email": "[email protected]",
"url": "http://galileoscope.com/"
},
"repository": {
"type": "git",
"url": "git://github.com/BrandwatchLtd/node-xlsx-stream.git"
},
"main": "lib/index.js",
"engines": {
"node": ">0.8.0"
},
"scripts": {
"test": "mocha",
"lint": "eslint .",
"prettier": "prettier --write --single-quote .",
"fix": "eslint --fix .",
"build": "npm install"
},
"devDependencies": {
"eslint": "^8.39.0",
"eslint-config-prettier": "^9.1.0",
"mocha": "10.7.3",
"node-xlsx": "^0.24.0",
"concat-stream": "^2.0.0",
"prettier": "^3.3.3",
"unzipper": "^0.12.3"
},
"dependencies": {
"lodash": "^4.17.21",
"through": "^2.3.8",
"duplexer": "^0.1.2",
"archiver": "^7.0.1"
},
"keywords": [
"xlsx",
"excel",
"stream",
"spreadsheet",
"SpreadsheetML"
]
}