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
/
package.json
54 lines (54 loc) · 1.61 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
{
"name": "xlsx-renderer",
"version": "2.3.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": "rm -rf lib/* && 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 tests/**/**/*.test.ts",
"coverageRaport": "nyc -r lcov -r=text -r=text-summary -r=json -e .ts -x \"*.test.ts\" mocha -r ts-node/register tests/**/*.test.ts tests/**/**/*.test.ts && nyc report && cp coverage/coverage-final.json coverage/coverage.json",
"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/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/node": "^12.12.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": "^4.1.1"
},
"files": [
"lib/**/*"
]
}