-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.36 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
{
"name": "s3-serve",
"version": "1.0.1",
"license": "MIT",
"description": "A utility for serving files from S3",
"author": "Abdullah Barhoum <https://github.com/AbdBarho>",
"repository": {
"type": "git",
"url": "https://github.com/AbdBarho/s3-serve.git"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"sideEffects": false,
"scripts": {
"start": "tsc --watch",
"build": "tsc",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"keywords": [
"s3",
"node",
"aws",
"express",
"fastify",
"nestjs"
],
"engines": {
"node": ">=16"
},
"peerDependencies": {
"@aws-sdk/client-s3": "^3.550.0"
},
"devDependencies": {
"@tsconfig/node16": "^16.1.3",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.5",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"nock": "^13.5.4",
"ts-jest": "^29.1.2",
"typescript": "^5.4.4"
},
"jest": {
"preset": "ts-jest",
"rootDir": ".",
"testRegex": ".*\\.spec\\.ts$",
"collectCoverageFrom": [
"src/lib/**/*.ts"
],
"coverageDirectory": "coverage",
"testEnvironment": "node",
"coverageReporters": [
"text",
"text-summary",
"cobertura"
]
}
}