-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.75 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
{
"name": "micro-office-converter",
"version": "1.1.3",
"description": "Microservice for converting office documents using LibreOffice",
"private": true,
"author": {
"name": "Geir Gåsodden",
"email": "geir.gasodden@pythonia.no",
"url": "https://github.com/zrrrzzt"
},
"contributors": [
{
"name": "Jonas Maccyber Enge",
"email": "jonas.enge@gmail.com",
"url": "https://github.com/maccyber"
}
],
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Alheimsins/micro-office-converter.git"
},
"bugs": {
"url": "https://github.com/Alheimsins/micro-office-converter/issues"
},
"homepage": "https://github.com/Alheimsins/micro-office-converter#readme",
"engines": {
"node": ">=14.16.0"
},
"scripts": {
"test": "standard && npm run test-deps && npm audit && ava",
"test-offline": "standard && ava",
"test-deps": "dependency-check --no-dev ./package.json",
"cleanup": "rm -rf dist",
"coverage": "nyc ava",
"coveralls": "nyc ava && nyc report --reporter=lcov && cat coverage/lcov.info | coveralls",
"standard-fix": "standard --fix",
"refresh": "rm -rf node_modules && rm package-lock.json && npm install",
"start": "micro"
},
"keywords": [
"LibreOffice",
"convert",
"microservice",
"micro"
],
"license": "MIT",
"dependencies": {
"adm-zip": "0.5.9",
"cors": "2.8.5",
"express-fileupload": "1.4.0",
"finalhandler": "1.2.0",
"make-dir": "3.1.0",
"markdown-it": "13.0.1",
"micro": "9.3.4",
"router": "1.3.7",
"uuid-random": "1.3.2"
},
"devDependencies": {
"ava": "4.3.0",
"coveralls": "3.1.1",
"dependency-check": "4.1.0",
"nyc": "15.1.0",
"standard": "17.0.0"
}
}