-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.63 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
{
"name": "@codeperate/foal-s3-disk-v3",
"version": "1.0.3",
"description": "AWS S3 V3 storage components for FoalTS",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "echo 'test'",
"build": "del-cli dist && tsc -p tsconfig.build.json",
"release": "npm run build && npx np --no-cleanup --no-release-draft"
},
"funding": {
"url": "https://github.com/sponsors/LoicPoullain"
},
"engines": {
"node": ">=10"
},
"keywords": [
"FoalTS",
"foal",
"disk",
"storage",
"fs",
"aws",
"s3"
],
"bugs": {
"url": "https://github.com/FoalTS/foal/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/FoalTS/foal"
},
"homepage": "https://github.com/FoalTS",
"contributors": [
"Loïc Poullain <loic.poullain@centraliens.net>"
],
"license": "MIT",
"files": [
"dist/"
],
"peerDependencies": {
"@aws-sdk/client-s3": "^3.470.0",
"@foal/core": "^4.2.0",
"@foal/storage": "^4.2.0",
"sharp": "^0.33.0"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.470.0",
"@foal/core": "^4.2.0",
"@foal/storage": "^4.2.0",
"sharp": "^0.33.0",
"@jest/types": "^28.1.1",
"@types/jest": "^28.1.4",
"@types/node": "10.17.24",
"del-cli": "^5.0.0",
"jest": "^28.1.2",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
},
"publishConfig": {
"access": "public"
}
}