-
Notifications
You must be signed in to change notification settings - Fork 97
/
Copy pathpackage.json
40 lines (40 loc) · 833 Bytes
/
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
{
"name": "libreoffice-convert",
"version": "1.6.0",
"description": "A simple and fast node.js module for converting office documents to different formats",
"main": "index.js",
"types": "index.d.ts",
"repository": "https://github.com/elwerene/libreoffice-convert",
"keywords": [
"Libreoffice",
"convert",
"Excel",
"Word",
"xlsx",
"xls",
"doc",
"docx",
"pdf"
],
"contributors": [
"René Rössler <rene@freshx.de>",
"Dmitrii Kosinov <dnk@kakveselo.ru>",
"Brian Chong <bgorhoball@protonmail.com>",
"Võ Văn Khoa"
],
"license": "MIT",
"dependencies": {
"async": "^3.2.3",
"tmp": "^0.2.1"
},
"devDependencies": {
"@types/node": "^17.0.23",
"jest": "^27.5.1"
},
"engines": {
"node": ">=6"
},
"scripts": {
"test": "jest"
}
}