forked from zrrrzzt/tfk-api-unoconv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.16 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
{
"name": "tfk-api-unoconv",
"version": "3.2.5",
"private": true,
"description": "Unoconv as a webservice",
"author": {
"name": "Geir Gåsodden",
"email": "[email protected]",
"url": "https://github.com/zrrrzzt"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/zrrrzzt/tfk-api-unoconv/issues"
},
"homepage": "https://github.com/zrrrzzt/tfk-api-unoconv",
"main": "index.js",
"engines": {
"node": ">=10.20.1"
},
"scripts": {
"test": "standard && npm audit && tap --reporter=spec test/**/*.js",
"coverage": "tap test/*.js --coverage",
"coveralls": "tap --cov --coverage-report=lcov test/**/*.js && cat coverage/lcov.info | coveralls",
"start": "node standalone.js",
"standard-fix": "standard --fix",
"refresh": "rm -rf node_modules && rm package-lock.json && npm install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zrrrzzt/tfk-api-unoconv.git"
},
"dependencies": {
"hapi": "16.7.0",
"inert": "4.2.1",
"unoconv2": "1.0.0",
"uuid": "8.3.2"
},
"devDependencies": {
"coveralls": "3.1.1",
"standard": "16.0.4",
"tap": "15.1.5"
}
}