forked from optilude/xlsx-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 1.58 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
{
"name": "xlsx-template",
"version": "1.3.0",
"description": "Generate .xlsx (Excel) files from templates built in Excel",
"main": "./lib/index",
"files": [
"lib"
],
"author": {
"name": "Martin Aspeli"
},
"contributors": [
{
"name": "Martin Aspeli",
"email": "optilude@gmail.com"
},
{
"name": "Andrii Kurdiumov",
"email": "kant2002@gmail.com"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/optilude/xlsx-template.git"
},
"bugs": {
"url": "http://github.com/optilude/xlsx-template/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/optilude/xlsx-template/raw/master/LICENSE"
}
],
"jest": {
"collectCoverage": true,
"coverageDirectory": "../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>/lib/$1",
"^tests/(.*)": "<rootDir>/tests/$1"
}
},
"dependencies": {
"elementtree": "0.1.6",
"image-size": "^0.3.5",
"jszip": "^2.6.1"
},
"devDependencies": {
"@types/jest": "^26.0.9",
"@types/jszip": "0.0.27",
"@types/node": "^14.0.27",
"jest": "^26.2.2",
"ts-jest": "^26.1.4",
"typescript": "^3.9.7"
},
"scripts": {
"test": "jest"
},
"readme": "",
"readmeFilename": "README.md"
}