forked from exceljs/exceljs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.55 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "exceljs",
"version": "0.2.27",
"description": "Excel Workbook Manager - Read and Write xlsx and csv Files.",
"private": false,
"license": "MIT",
"author": {
"name": "Guyon Roche",
"email": "[email protected]",
"url": "https://github.com/guyonroche/exceljs"
},
"repository": {
"type": "git",
"url": "https://github.com/guyonroche/exceljs.git"
},
"keywords": [
"xlsx",
"json",
"csv",
"excel",
"font",
"border",
"fill",
"number",
"format",
"number format",
"alignment",
"office",
"spreadsheet",
"workbook",
"defined names",
"data validations",
"rich text",
"in-cell format",
"outlineLevel",
"views",
"frozen",
"split",
"pageSetup"
],
"dependencies": {
"archiver": "0.15.0",
"bluebird": "*",
"fast-csv": "0.5.7",
"lodash": "^4.16.2",
"moment": "2.11.2",
"sax": "^0.6.0",
"unzip2": "^0.2.5"
},
"devDependencies": {
"chai": "*",
"chai-xml": "*",
"chai-datetime": "*",
"express": "*",
"jshint": "*",
"memorystream": "*",
"mocha": "*",
"request": "*",
"underscore": "1.4.4"
},
"scripts": {
"test": "npm run unit-test && npm run integration-test && npm run end-to-end-test",
"unit-test": "mocha spec/unit --recursive",
"integration-test": "mocha spec/integration --recursive",
"end-to-end-test": "mocha spec/end-to-end --recursive"
},
"main": "./excel.js",
"files": [
"excel.js",
"lib",
"LICENSE",
"README.md",
"MODEL.md"
]
}