-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.91 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
78
{
"name": "xltpl",
"version": "0.3.0",
"description": "A node module to generate .xlsx files from a .xlsx template.",
"main": "lib/exceljs/bookwriter.js",
"author": "Zhang Yu",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/zhangyu836/node-xlsx-template.git"
},
"files": [
"dist",
"lib",
"LICENSE",
"README.md"
],
"scripts": {
"build": "grunt build",
"install-build": "npm install && grunt build"
},
"keywords": [
"xlsx",
"excel",
"spreadsheet",
"workbook",
"worksheet",
"template",
"exceljs",
"nunjucks",
"jinja"
],
"dependencies": {
"exceljs": "^4.3.0",
"nunjucks": "^3.2.3"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"@types/node": "^14.11.2",
"babelify": "^10.0.0",
"browserify": "^16.5.2",
"chai": "^4.2.0",
"chai-datetime": "^1.7.0",
"chai-xml": "^0.3.2",
"core-js": "^3.6.5",
"dirty-chai": "^2.0.1",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.12.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"express": "^4.16.4",
"got": "^9.0.0",
"grunt": "^1.3.0",
"grunt-babel": "^8.0.0",
"grunt-browserify": "^5.3.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jasmine": "^2.2.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-exorcise": "^2.1.1",
"grunt-terser": "^1.0.0",
"husky": "^4.3.0",
"lint-staged": "^10.2.13",
"mocha": "^7.2.0",
"prettier-eslint": "^11.0.0",
"prettier-eslint-cli": "^5.0.0",
"regenerator-runtime": "^0.13.7",
"sax": "^1.2.4",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
}
}