-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
47 lines (47 loc) · 1 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": "parsexcel.js",
"version": "0.1.0",
"description": "Parse entire excel workbooks in native node.js. Get cell styles, formats, formulas, and values.",
"main": "parsexcel.js",
"contributors": [
{
"name": "Trevor Dixon",
"email": "[email protected]"
}
],
"scripts": {
"test": "mocha --reporter list",
"inspect-xlsx": "bash test/unpackxlsx.sh"
},
"dependencies": {
"adm-zip": "^0.4.4",
"bluebird": "^2.3.10",
"libxmljs": "~0.12.0",
"moment": "^2.8.3",
"underscore": "~1.3.3"
},
"devDependencies": {
"deep-equal-with-difflet": "^0.1.2",
"mocha": "~1.17.1"
},
"repository": {
"type": "git",
"url": "https://github.com/nickstefan/parsexcel.js"
},
"keywords": [
"excel",
"unzip",
"workbook",
"xlsx",
"formulas",
"formatting",
"xml",
"styles",
"parser",
"cell format",
"cell style",
"excel cell types"
],
"author": "Nick Stefan <[email protected]>",
"license": "MIT"
}