forked from exceljs/exceljs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (51 loc) · 1.29 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
{
"name": "exceljs",
"version": "0.2.6",
"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"
],
"dependencies": {
"archiver": "0.14.3",
"bluebird": "*",
"fast-csv": "0.5.7",
"moment": "2.11.2",
"sax": "^0.6.0",
"underscore": "1.4.4",
"unzip2": "^0.2.5"
},
"devDependencies": {
"chai": "*",
"express": "*",
"jshint": "*",
"memorystream": "*",
"mocha": "*",
"request": "*"
},
"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"
]
}