forked from exceljs/exceljs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.19 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.19 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@wekanteam/exceljs",
"version": "4.7.0",
"description": "Excel Workbook Manager - Read and Write xlsx and csv Files.",
"private": false,
"license": "MIT",
"author": {
"name": "Guyon Roche",
"email": "guyon@live.com"
},
"repository": {
"type": "git",
"url": "https://github.com/wekan/exceljs.git"
},
"engines": {
"node": ">=8.3.0"
},
"main": "./excel.js",
"browser": "./dist/exceljs.min.js",
"types": "./index.d.ts",
"files": [
"dist",
"lib",
"excel.js",
"LICENSE",
"README.md",
"README_zh.md",
"index.ts",
"index.d.ts"
],
"scripts": {
"test": "npm run test:full",
"test:es5": "export EXCEL_BUILD=es5 && npm run test:full",
"test:full": "npm run build && npm run test:unit && npm run test:integration && npm run test:end-to-end && npm run test:jasmine",
"test:version": "npm run build && npm run test:unit && npm run test:integration && npm run test:end-to-end && npm run test:browser && npm run test:dist",
"test:all": "npm run test:native && npm run test:es5",
"test:native": "npm run test:full",
"test:unit": "mocha --require spec/config/setup --require spec/config/setup-unit spec/unit --recursive",
"test:integration": "mocha --require spec/config/setup spec/integration --recursive",
"test:end-to-end": "mocha --require spec/config/setup spec/end-to-end --recursive",
"test:browser": "if [ ! -f .disable-test-browser ]; then npm run build && npm run test:jasmine; fi",
"test:jasmine": "grunt jasmine",
"test:unit:es5": "export EXCEL_BUILD=es5 && npm run test:unit",
"test:integration:es5": "export EXCEL_BUILD=es5 && npm run test:integration",
"test:end-to-end:es5": "export EXCEL_BUILD=es5 && npm run test:end-to-end",
"test:dist": "mocha --require spec/config/setup spec/dist --recursive",
"test:manual": "node spec/manual/app.js",
"test:typescript": "mocha -r ts-node/register spec/typescript/**/*.spec.ts",
"clean-build": "npm run clean && npm run build",
"lint": "eslint --format node_modules/eslint-friendly-formatter .",
"lint:fix": "prettier-eslint --write $(pwd)'/**/*.js'",
"lint:staged": "lint-staged",
"clean": "rm -rf build/ && rm -rf dist",
"benchmark": "node --expose-gc benchmark",
"benchmark:debug": "node --expose-gc --inspect-brk --trace-deopt benchmark",
"build": "grunt build",
"install-build": "npm install && grunt build",
"preversion": "npm run clean && npm run build && npm run test:version",
"postversion": "git push --no-verify && git push --tags --no-verify"
},
"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": "^7.0.0",
"dayjs": "^1.11.19",
"fast-csv": "^5.0.0",
"jszip": "^3.10.1",
"lodash": "^4.18.1",
"readable-stream": "^3.6.0",
"saxes": "^5.0.1",
"tmp": "^0.2.5",
"unzipper": "^0.12.0",
"uuid": "^8.3.0"
}
}