-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
44 lines (44 loc) · 1.03 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
{
"name": "xlsx-parse-stream",
"version": "1.1.0",
"description": "Streaming XLSX parser for node ",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/staeco/xlsx-parse-stream.git"
},
"scripts": {
"test": "mocha test --timeout 10000",
"lint": "eslint index.js test --fix"
},
"author": "Contra <[email protected]> (http://contra.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/staeco/xlsx-parse-stream/issues"
},
"homepage": "https://github.com/staeco/xlsx-parse-stream#readme",
"dependencies": {
"duplexify": "^4.0.0",
"exceljs": "github:yocontra/exceljs#fix-streams",
"unzipper": "github:ZJONSSON/node-unzipper"
},
"devDependencies": {
"@stae/linters": "^1.1.0",
"get-stream": "^6.0.0",
"mocha": "^10.0.0",
"should": "^13.0.0"
},
"resolutions": {
"unzipper": "github:ZJONSSON/node-unzipper"
},
"engines": {
"node": ">=12"
},
"keywords": [
"stream",
"xlsx",
"exceljs",
"transform",
"convert"
]
}