-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.46 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.46 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
{
"name": "s3-temp",
"version": "0.1.0",
"description": "Upload files to S3 with automatic cleanup",
"main": "dist",
"types": "dist",
"type": "module",
"scripts": {
"prebuild": "del dist",
"build": "tsc",
"prepare": "npm run build",
"test": "mocha \"src/*.test.ts\" \"src/**/*.test.ts\"",
"check-types": "tsc --noEmit",
"lint:check": "eslint .",
"lint:fix": "eslint . --fix",
"format:check": "prettier --check .",
"format:fix": "prettier --write ."
},
"files": [
"CHANGELOG.md",
"dist"
],
"author": "Metabolize",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-s3": "3.x",
"uuid": "^13.0.0"
},
"devDependencies": {
"@aws-sdk/client-s3": "3.1010.0",
"@types/chai": "5.2.3",
"@types/chai-as-promised": "8.0.2",
"@types/chai-string": "1.4.5",
"@types/mocha": "10.0.10",
"@types/node": "22.19.15",
"chai": "6.2.2",
"chai-as-promised": "8.0.2",
"chai-string": "2.0.0",
"del-cli": "7.0.0",
"dotenv": "17.3.1",
"eslint": "9.39.4",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-simple-import-sort": "12.1.1",
"jiti": "2.6.1",
"mocha": "11.7.5",
"neostandard": "0.12.2",
"prettier": "3.8.1",
"tsx": "4.21.0",
"typescript": "5.9.3"
},
"prettier": {
"proseWrap": "always",
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"mocha": {
"extension": [
"ts"
],
"import": "tsx"
}
}