mirror of
https://github.com/optilude/xlsx-template.git
synced 2026-07-02 08:27:39 +08:00
77 lines
1.6 KiB
JSON
77 lines
1.6 KiB
JSON
{
|
|
"name": "xlsx-template",
|
|
"version": "1.3.1",
|
|
"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": "^27.4.0",
|
|
"@types/jszip": "0.0.27",
|
|
"@types/node": "^14.0.27",
|
|
"jest": "^27.5.1",
|
|
"ts-jest": "^27.1.3",
|
|
"typescript": "^3.9.7"
|
|
},
|
|
"scripts": {
|
|
"test": "jest"
|
|
},
|
|
"readme": "",
|
|
"readmeFilename": "README.md"
|
|
}
|