-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
55 lines (55 loc) · 1.12 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
{
"name": "html-to-xlsx",
"version": "3.0.1",
"description": "Convert html to xlsx",
"keywords": [
"html",
"xlsx",
"conversion"
],
"homepage": "https://github.com/pofider/html-to-xlsx",
"repository": {
"type": "git",
"url": "[email protected]:pofider/html-to-xlsx.git"
},
"license": "MIT",
"author": {
"name": "Jan Blaha",
"email": "[email protected]"
},
"contributors": [
"BJR Matos <[email protected]> (https://github.com/bjrmatos)"
],
"main": "index.js",
"scripts": {
"test": "mocha --timeout 15000 test/test.js && standard"
},
"dependencies": {
"jsreport-exceljs": "4.0.1",
"moment": "2.29.4",
"tinycolor2": "1.4.2",
"uuid": "8.3.2"
},
"devDependencies": {
"chrome-page-eval": "1.3.2",
"mocha": "10.1.0",
"phantom-page-eval": "2.0.1",
"phantomjs": "2.1.7",
"puppeteer": "22.5.0",
"should": "13.2.3",
"standard": "17.0.0",
"xlsx": "0.18.5"
},
"engines": {
"node": ">=18.15.0"
},
"standard": {
"env": [
"node",
"mocha"
],
"ignore": [
"lib/scripts/conversionScript.js"
]
}
}