-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.04 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
{
"name": "supersalmon",
"version": "1.6.2",
"description": "Stream processor for xlsx files",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "tests"
},
"scripts": {
"test": "mocha test/salmon.test --timeout 100000 && mocha lib/workbook.test --timeout 100000"
},
"keywords": [
"xlsx",
"parser",
"streaming",
"excel",
"reader"
],
"author": "",
"license": "ISC",
"devDependencies": {
"bluebird": "^3.5.1",
"chai": "^4.1.2",
"eslint": "^6.1.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^5.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/lambrojos/supersalmon"
},
"dependencies": {
"debug": "^3.1.0",
"object-chunker": "^1.0.1",
"pump": "^3.0.0",
"sax": "^1.2.4",
"ssf": "^0.10.2",
"stream-file-type": "^0.1.1",
"temp": "^0.9.0",
"unzipper": "^0.9.11"
}
}