-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
157 lines (157 loc) · 4.29 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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
{
"name": "loopback4-s3",
"version": "9.0.3",
"description": "A loopback-next extension for AWS S3 integration.",
"keywords": [
"loopback-extension",
"loopback"
],
"main": "index.js",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "npm run clean && lb-tsc",
"build:watch": "lb-tsc --watch",
"clean": "lb-clean dist *.tsbuildinfo",
"coverage": "nyc npm run test",
"lint": "npm run prettier:check && npm run eslint",
"lint:fix": "npm run eslint:fix && npm run prettier:fix",
"prettier:cli": "lb-prettier \"**/*.ts\" \"**/*.js\"",
"prettier:check": "npm run prettier:cli -- -l",
"prettier:fix": "npm run prettier:cli -- --write",
"eslint": "lb-eslint --report-unused-disable-directives .",
"eslint:fix": "npm run eslint -- --fix",
"pretest": "npm run build",
"test": "lb-mocha --allow-console-logs \"dist/__tests__\"",
"posttest": "npm run lint",
"test:dev": "lb-mocha --allow-console-logs dist/__tests__/**/*.js && npm run posttest",
"prepublishOnly": "npm run test",
"prepare": "husky install",
"release": "HUSKY=0 semantic-release --no-ci"
},
"repository": {
"type": "git",
"url": "https://github.com/sourcefuse/loopback4-s3"
},
"author": "Sourcefuse",
"license": "MIT",
"files": [
"README.md",
"index.js",
"index.d.ts",
"dist",
"src",
"!*/__tests__"
],
"dependencies": {
"@aws-sdk/client-s3": "^3.657.0",
"@aws-sdk/s3-request-presigner": "^3.685.0",
"@smithy/smithy-client": "^3.4.2",
"@aws-sdk/types": "^3.679.0 ",
"@loopback/boot": "^7.0.9",
"@loopback/context": "^7.0.9",
"@loopback/core": "^6.1.6",
"moment-timezone": "^0.5.40"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@loopback/build": "^11.0.8",
"@loopback/eslint-config": "^15.0.4",
"@loopback/rest": "^14.0.9",
"@loopback/rest-explorer": "^7.0.9",
"@loopback/testlab": "^7.0.8",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/dotenv": "^8.2.0",
"@types/moment-timezone": "^0.5.30",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^6.3.0",
"cz-customizable-ghooks": "^2.0.0",
"dotenv": "^16.0.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-eslint-plugin": "^5.5.1",
"eslint-plugin-mocha": "^10.4.3",
"fs-extra": "^11.2.0",
"git-release-notes": "^5.0.0",
"husky": "^8.0.2",
"jsdom": "^21.0.0",
"nyc": "^17.1.0",
"semantic-release": "^19.0.3",
"simple-git": "^3.15.1",
"source-map-support": "^0.5.21",
"typescript": "~5.2.2"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"overrides": {
"git-release-notes": {
"ejs": "^3.1.8",
"yargs": "^17.6.2"
},
"body-parser": {
"debug": "^4.3.4"
},
"express": {
"debug": "^4.3.4",
"finalhandler": "^1.2.0",
"send": "^0.18.0",
"serve-static": "^1.15.0"
},
"@semantic-release/npm": {
"npm": "^9.4.2"
},
"@aws-sdk/smithy-client": {
"@smithy/types": "^2.3.3"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
},
"release": {
"branches": [
"master"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"releaseRules": [
{
"type": "chore",
"scope": "deps",
"release": "patch"
}
]
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} semantic"
}
],
"@semantic-release/github"
],
"repositoryUrl": "[email protected]:sourcefuse/loopback4-s3.git"
}
}