-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.93 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.93 KB
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
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@shelf/aws-lambda-libreoffice",
"version": "9.0.1",
"description": "Utility to work with Docker version of LibreOffice in Lambda",
"keywords": [
"aws lambda",
"libreoffice",
"serverless",
"pdf"
],
"repository": "shelfio/aws-lambda-libreoffice",
"license": "MIT",
"author": {
"name": "Vlad Holubiev",
"email": "vlad@shelf.io",
"url": "https://shelf.io"
},
"sideEffects": true,
"type": "module",
"exports": "./lib/index.js",
"module": "./lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "rm -rf lib/ && tsc",
"coverage": "jest --coverage",
"lint": "eslint . --fix",
"lint:ci": "eslint .",
"prepack": "pnpm build",
"test": "pnpm run test:unit",
"test:unit": "jest --runInBand --testPathPatterns tests/unit",
"test:integration": "jest --runInBand --testPathPatterns tests/integration",
"test:e2e": "pnpm run test:integration",
"build:lambda": "node scripts/build-lambda.mjs",
"test:lambda": "node scripts/run-lambda-integration.mjs",
"type-check": "tsc --noEmit",
"type-check:watch": "pnpm run type-check -- --watch"
},
"lint-staged": {
"*.{html,json,md,yml}": [
"prettier --write"
],
"*.{js,ts}": [
"eslint --fix"
]
},
"prettier": "@shelf/prettier-config",
"dependencies": {
"@shelf/is-audio-filepath": "3.0.1",
"del": "8.0.0",
"is-image": "4.0.0",
"is-video": "2.0.0"
},
"devDependencies": {
"@shelf/eslint-config": "5.2.3",
"@shelf/prettier-config": "1.0.0",
"@shelf/tsconfig": "0.1.0",
"@swc/jest": "0.2.39",
"@types/jest": "30.0.0",
"@types/node": "^24.2.1",
"esbuild": "0.25.9",
"eslint": "9.33.0",
"husky": "9.1.7",
"jest": "30.0.5",
"lint-staged": "16.1.5",
"prettier": "3.6.2",
"typescript": "5.9.2"
},
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public"
}
}