forked from optilude/xlsx-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 1.9 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "xlsx-template-next",
"version": "1.0.3",
"description": "Generate .xlsx (Excel) files from templates built in Excel",
"homepage": "https://github.com/mirror-ru/xlsx-template-next",
"keywords": [
"xlsx",
"excel",
"template",
"templates",
"templater",
"templating",
"workbook",
"report",
"generation",
"generator",
"populate"
],
"main": "./build/index",
"files": [
"build"
],
"author": {
"name": "Martin Aspeli"
},
"contributors": [
{
"name": "Martin Aspeli",
"email": "[email protected]"
},
{
"name": "Andrii Kurdiumov",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mirror-ru/xlsx-template-next/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/mirror-ru/xlsx-template-next.git"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/mirror-ru/xlsx-template-next/raw/master/LICENSE"
}
],
"jest": {
"collectCoverage": true,
"coverageDirectory": "./test/coverage",
"coverageReporters": [
"text",
"cobertura"
],
"transform": {
".(js|ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|-(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"testTimeout": 500,
"moduleNameMapper": {
"^app/(.*)": "<rootDir>/build/$1",
"^tests/(.*)": "<rootDir>/tests/$1"
}
},
"dependencies": {
"elementtree": "^0.1.7",
"image-size": "^1.0.2",
"jszip": "^3.10.1"
},
"devDependencies": {
"@types/jest": "^29.5.4",
"@types/node": "^20.6.0",
"jest": "^29.6.4",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"scripts": {
"compile": "tsc",
"test": "npm run compile && jest",
"prepublishOnly": "npm run compile"
},
"readmeFilename": "README.md"
}