-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 1.89 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
{
"name": "@tormozz48/xlsx-template",
"version": "1.0.4",
"description": "Library for applying your data for given xlsx template with some advanced features",
"main": "dist/index.js",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rm -rf ./dist",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json -c tslint.json",
"test": "mocha -r ts-node/register test/**/*.spec.ts",
"test:watch": "npm test -- --watch --extension *.ts",
"test:cov": "nyc npm run test",
"version": "npm run build",
"release": "release-it"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS -g './git/commitlint.js'"
}
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./git/commitizen.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/tormozz48/xlsx-template.git"
},
"keywords": [
"xlsx",
"xlsx-populate",
"template",
"excel",
"apply",
"sheet",
"placeholder",
"cell",
"sheet",
"workbook"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/tormozz48/xlsx-template/issues"
},
"homepage": "https://github.com/tormozz48/xlsx-template#readme",
"devDependencies": {
"@commitlint/cli": "^8.3.4",
"@types/chai": "^4.2.7",
"@types/lodash": "^4.14.149",
"@types/mocha": "^5.2.7",
"@types/node": "^13.1.4",
"chai": "^4.2.0",
"commitizen": "^4.0.3",
"cz-customizable": "^6.2.0",
"husky": "^3.1.0",
"mocha": "^7.0.0",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"ts-loader": "^6.2.1",
"ts-node": "^8.5.4",
"tsconfig-paths": "^3.9.0",
"tslint": "^5.20.1",
"typescript": "^3.7.4"
},
"dependencies": {
"lodash": "^4.17.21",
"xlsx-populate2": "^1.19.1"
}
}