-
Notifications
You must be signed in to change notification settings - Fork 146
/
package.json
77 lines (77 loc) · 1.64 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
{
"name": "xlsx-template",
"version": "1.4.4",
"description": "Generate .xlsx (Excel) files from templates built in Excel",
"main": "./lib/index",
"files": [
"lib"
],
"author": {
"name": "Martin Aspeli"
},
"contributors": [
{
"name": "Martin Aspeli",
"email": "[email protected]"
},
{
"name": "Andrii Kurdiumov",
"email": "[email protected]"
}
],
"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": {
"@kant2002/jszip": "2.7.1",
"elementtree": "^0.1.7",
"image-size": "^1.0.2"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^14.0.27",
"jest": "^27.5.1",
"ts-jest": "^27.1.3",
"typescript": "^3.9.7"
},
"scripts": {
"compile": "tsc",
"test": "npm run compile && jest",
"prepublishOnly": "npm run compile"
},
"readme": "",
"readmeFilename": "README.md"
}