-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.05 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.05 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "s3proxy",
"version": "4.0.0",
"description": "Streaming web proxy for AWS S3",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"type": "module",
"engines": {
"node": ">=22.13.0"
},
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
},
"./package.json": "./package.json"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.832.0",
"@biomejs/biome": "^2.0.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.3",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"@types/debug": "^4.1.12",
"@types/express": "^5.0.3",
"@types/morgan": "^1.9.10",
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.5",
"artillery": "^2.0.23",
"aws-sdk-client-mock": "^4.1.0",
"body-parser": "^2.2.0",
"express": "^5.1.0",
"fastify": "^5.4.0",
"npm-check-updates": "^20.0.2",
"semantic-release": "^24.2.5",
"tsx": "^4.20.3",
"typescript": "^6.0.3",
"vitest": "^4.1.5",
"wait-on": "^9.0.5"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.832.0"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"dev": "tsx examples/fastify-basic.ts",
"start": "tsx examples/fastify-basic.ts",
"test": "npm run test:unit",
"test:unit": "vitest run",
"test:coverage": "vitest run --coverage",
"test:validation": "vitest run --config vitest.integration.config.ts",
"test:smoke": "bash scripts/smoke-examples.sh",
"test:integration": "npm run lint && npm run type-check",
"test:watch": "vitest",
"lint": "biome check",
"lint:fix": "biome check --write",
"format": "biome format --write",
"type-check": "tsc --noEmit && tsc --noEmit -p tsconfig.examples.json",
"clean": "rm -rf dist coverage && rm -f load-test-results-*.json artillery-report-*.json performance-test-*.json s3proxy*.tgz credentials.json",
"clean:test-results": "rm -f load-test-results-*.json artillery-report-*.json performance-test-*.json",
"prepublishOnly": "npm run clean && npm run build && npm run test:unit",
"package:verify": "npm pack --dry-run",
"package:contents": "npm pack && tar -tzf *.tgz && rm *.tgz",
"release:dry-run": "semantic-release --dry-run",
"release:local": "semantic-release --no-ci",
"cleanup": "rm -fv s3proxy*.tgz; rm -fv examples/docker/s3proxy*.tgz",
"ncu-upgrade": "ncu --upgrade"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gmoon/s3proxy.git"
},
"files": [
"dist/src/**/*",
"README.md",
"LICENSE"
],
"keywords": [
"aws",
"s3",
"proxy",
"node",
"nodejs",
"http",
"express",
"typescript"
],
"author": "George Moon <george.moon@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/gmoon/s3proxy/issues"
},
"homepage": "https://github.com/gmoon/s3proxy#readme"
}