This repository has been archived by the owner on Nov 20, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Pawel Siemienik
committed
Mar 26, 2020
1 parent
6b0144e
commit a90dc19
Showing
1 changed file
with
52 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,55 +1,54 @@ | ||
{ | ||
"name": "xlsx-renderer", | ||
"version": "2.0.1", | ||
"description": "Allows render xlsx files based on template supplied by viewModel.", | ||
"main": "lib/Renderer.js", | ||
"types": "lib/Renderer.d.ts", | ||
"author": "Paweł Siemienik <[email protected]>", | ||
"directories": { | ||
"lib": "lib/" | ||
}, | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/Siemienik/xlsx-renderer" | ||
}, | ||
"keywords": [ | ||
"excel", | ||
"xlsx", | ||
"rendering xlsx", | ||
"generator", | ||
"template" | ||
], | ||
"scripts": { | ||
"build": "tsc", | ||
"format": "prettier --write \"src/**/*.ts\"", | ||
"lint": "tslint -p tsconfig.json", | ||
"lint:fix": "tslint -p tsconfig.json --fix", | ||
"test": "mocha -r ts-node/register tests/**/*.test.ts", | ||
"coverageRaport": "nyc -r lcov -e .ts -x \"*.test.ts\" mocha -r ts-node/register tests/**/*.test.ts && nyc report", | ||
"prepublishOnly": "npm test && npm run lint && npm run build", | ||
"preversion": "npm run lint", | ||
"version": "npm run format && git add -A src", | ||
"postversion": "git push && git push --tags" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^12.12.6", | ||
"@types/chai": "^4.1.7", | ||
"@types/mocha": "^5.2.6", | ||
"chai": "^4.2.0", | ||
"mocha": "^6.1.4", | ||
"nyc": "^14.0.0", | ||
"prettier": "^1.17.0", | ||
"ts-node": "^8.1.0", | ||
"tslint": "^5.16.0", | ||
"tslint-config-prettier": "^1.18.0", | ||
"typescript": "^3.4.4" | ||
}, | ||
"dependencies": { | ||
"exceljs": "3.8.1" | ||
}, | ||
"files": [ | ||
"lib/**/*" | ||
] | ||
"name": "xlsx-renderer", | ||
"version": "2.1.0", | ||
"description": "Allows render xlsx files based on template supplied by viewModel.", | ||
"main": "lib/Renderer.js", | ||
"types": "lib/Renderer.d.ts", | ||
"author": "Paweł Siemienik <[email protected]>", | ||
"directories": { | ||
"lib": "lib/" | ||
}, | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/Siemienik/xlsx-renderer" | ||
}, | ||
"keywords": [ | ||
"excel", | ||
"xlsx", | ||
"rendering xlsx", | ||
"generator", | ||
"template" | ||
], | ||
"scripts": { | ||
"build": "tsc", | ||
"format": "prettier --write \"src/**/*.ts\"", | ||
"lint": "tslint -p tsconfig.json", | ||
"lint:fix": "tslint -p tsconfig.json --fix", | ||
"test": "mocha -r ts-node/register tests/**/*.test.ts", | ||
"coverageRaport": "nyc -r lcov -e .ts -x \"*.test.ts\" mocha -r ts-node/register tests/**/*.test.ts && nyc report", | ||
"prepublishOnly": "npm test && npm run lint && npm run build", | ||
"preversion": "npm run lint", | ||
"version": "npm run format && git add -A src", | ||
"postversion": "git push && git push --tags" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^12.12.6", | ||
"@types/chai": "^4.1.7", | ||
"@types/mocha": "^5.2.6", | ||
"chai": "^4.2.0", | ||
"mocha": "^6.1.4", | ||
"nyc": "^14.0.0", | ||
"prettier": "^1.17.0", | ||
"ts-node": "^8.1.0", | ||
"tslint": "^5.16.0", | ||
"tslint-config-prettier": "^1.18.0", | ||
"typescript": "^3.4.4" | ||
}, | ||
"dependencies": { | ||
"exceljs": "3.8.1" | ||
}, | ||
"files": [ | ||
"lib/**/*" | ||
] | ||
} | ||
|