-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.33 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
{
"name": "p3x-json2xls-worker-thread",
"version": "2024.10.102",
"corifeus": {
"icon": "far fa-file-excel",
"prefix": "p3x-",
"publish": true,
"type": "p3x",
"code": "Legend",
"nodejs": "v22.3.0",
"opencollective": false,
"reponame": "json2xls-worker-thread",
"build": true
},
"description": "📈 Convert JSON to Excel XLSX with offloading the constructing the data using a worker thread",
"main": "src/index.js",
"scripts": {
"test": "grunt && mocha ./test/mocha/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/patrikx3/json2xls-worker-thread.git"
},
"keywords": [
"json2xls",
"worker",
"thread",
"offloading",
"async",
"xls",
"xlsx",
"json"
],
"author": "Patrik Laszlo <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/patrikx3/json2xls-worker-thread/issues"
},
"homepage": "https://corifeus.com/json2xls-worker-thread",
"devDependencies": {
"corifeus-builder": "^2024.10.103",
"express": "^4.19.2"
},
"dependencies": {
"excel-export": "^0.5.1",
"object-path": "^0.11.8"
},
"engines": {
"node": ">=12.13.0"
}
}