forked from vikramthyagarajan/node-excel-stream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 936 Bytes
/
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
{
"name": "node-excel-stream",
"version": "1.2.1",
"description": "A utility to read and write excels JSON data in streams",
"main": "index.js",
"scripts": {
"test": "mocha tests/**/**.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vikramthyagarajan/node-excel-stream.git"
},
"engines": {
"node": ">=8.3.0"
},
"keywords": [
"node",
"excel",
"stream",
"exceljs",
"json",
"write",
"read",
"parse"
],
"author": "Vikram Thyagarajan",
"license": "MIT",
"bugs": {
"url": "https://github.com/vikramthyagarajan/node-excel-stream/issues"
},
"homepage": "https://github.com/vikramthyagarajan/node-excel-stream#readme",
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^7.0.0",
"rimraf": "^2.5.4"
},
"dependencies": {
"bluebird": "^3.4.7",
"exceljs": "^3.5.0",
"joi": "^10.2.0",
"lodash": "^4.17.4"
}
}