-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.28 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
{
"name": "@janiscommerce/s3",
"version": "2.0.3",
"description": "A package to handle the AWS S3 requests",
"main": "lib/s3.js",
"scripts": {
"test": "export TEST_ENV=true; mocha --exit -R nyan --recursive tests/",
"watch-test": "export TEST_ENV=true; mocha --exit -R nyan -w --recursive tests/",
"test-ci": "export TEST_ENV=true; nyc --reporter=lcov --reporter=text-summary mocha --exit --recursive tests/",
"coverage": "nyc npm test",
"lint": "eslint lib/ tests/",
"prepare": "husky install",
"postpublish": "./.postpublish.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/janis-commerce/s3.git"
},
"author": "Janis",
"license": "ISC",
"homepage": "https://github.com/janis-commerce/s3.git#readme",
"devDependencies": {
"aws-sdk-client-mock": "^2.2.0",
"eslint": "^8.42.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"husky": "^8.0.3",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"sinon": "^15.1.0"
},
"files": [
"lib/"
],
"directories": {
"test": "tests"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.632.0",
"@aws-sdk/lib-storage": "^3.632.0",
"@aws-sdk/s3-presigned-post": "^3.632.0",
"@aws-sdk/s3-request-presigner": "^3.632.0"
}
}