-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathpackage.json
48 lines (48 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
48
{
"name": "excel-parser",
"version": "0.2.2",
"description": "node.js excel parser. Supports xlsx, xls",
"homepage": "https://github.com/vxtindia/excel-parser",
"main": "excelParser.js",
"scripts": {
"test": "grunt nodeunit"
},
"repository": {
"type": "git",
"url": "git://github.com/vxtindia/excel-parser.git"
},
"bugs": {
"url": "https://github.com/vxtindia/excel-parser/issues"
},
"keywords": [
"excel",
"spreadsheet",
"xls",
"xlsx"
],
"author": {
"name": "Shekhar R. Thawali",
"email": "shekhar.thawali@vxtindia.com"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/vxtindia/datlas/blob/master/LICENSE-MIT"
}
],
"engines": {
"node": "~17.3.1"
},
"dependencies": {
"async": "~3.2.3",
"temp": "~0.9.4",
"underscore": "~1.13.2"
},
"devDependencies": {
"grunt": "~1.4.1",
"grunt-contrib-internal": "~7.0.0",
"grunt-contrib-jshint": "~3.1.1",
"grunt-contrib-nodeunit": "~4.0.0",
"grunt-contrib-watch": "~1.1.0"
}
}