-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
59 lines (59 loc) · 1.31 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
{
"name": "@cyclic.sh/s3fs",
"version": "0.0.1",
"description": "Drop in replacement for Node.js fs library backed by AWS S3 with local filesystem fallback.",
"type": "commonjs",
"main": "src/index.js",
"scripts": {
"test": "env-cmd --silent jest",
"prepare": "husky install"
},
"keywords": [
"aws",
"s3",
"fs",
"s3fs",
"cyclic.sh",
"@cyclic.sh"
],
"engines": {
"node": ">=14.20.0"
},
"exports":{
".":"./src/index.js",
"./promises":"./src/promises.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cyclic-software/s3fs.git"
},
"author": {
"name": "Cyclic Software",
"url": "https://www.cyclic.sh"
},
"contributors": [
"Mike Korostelev (https://github.com/korostelevm)",
"Kam Lasater (https://github.com/seekayel)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/cyclic-software/s3fs/issues"
},
"homepage": "https://github.com/cyclic-software/s3fs#readme",
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"env-cmd": "^10.1.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"semantic-release": "^19.0.5"
},
"release": {
"branches": [
"main"
]
},
"dependencies": {
"@aws-sdk/client-s3": "^3.226.0"
}
}