forked from leftshifters/excel-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
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": "[email protected]"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/vxtindia/datlas/blob/master/LICENSE-MIT"
}
],
"engines": {
"node": "~0.8.2"
},
"dependencies": {
"underscore": "~1.4.4",
"temp": "~0.8.0",
"async": "~0.2.7"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-jshint": "~0.3.0",
"grunt-contrib-nodeunit": "~0.1.2",
"grunt-contrib-watch": "~0.3.1",
"grunt-contrib-internal": "~0.4.3"
}
}