-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.32 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
{
"name": "s3_file_provider",
"version": "1.0.0",
"description": "This package represents a file provider with an Amazon S3 bucket. It constructs virtual file systems that implement IFileProvider and integrate with AWS S3 SDK to provide the functionality for serving static files in ASP.NET.",
"scripts": {
"restore": "dotnet restore",
"build": "dotnet build S3FileProvider",
"pack": "dotnet pack S3FileProvider",
"test": "dotnet test",
"clean": "dotnet clean",
"prepare": "husky",
"commit": "cz",
"commitlint": "commitlint --edit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrrhak/s3_file_provider.git"
},
"keywords": [
"s3fileprovider",
"s3provider",
"fileprovider",
"aws",
"s3",
"hak",
"mrrhak",
"kimhak",
"longkimhak"
],
"author": "mrrhak",
"license": "MIT",
"bugs": {
"url": "https://github.com/mrrhak/s3_file_provider/issues"
},
"homepage": "https://github.com/mrrhak/s3_file_provider#readme",
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/cz-commitlint": "^19.2.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.0.11"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}