-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.85 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 1.85 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@handy-common-utils/aws-utils",
"version": "3.4.0",
"description": "AWS related utilities",
"scripts": {
"pretest": "eslint . --ext .ts",
"test": "nyc mocha",
"prepare": "shx rm -rf dist && tsc && es-check",
"preversion": "generate-api-docs-and-update-readme && git add README.md"
},
"files": [
"package.json",
"dist"
],
"main": "dist/aws-utils.js",
"types": "dist/aws-utils.d.ts",
"exports": {
".": {
"types": "./dist/aws-utils.d.ts",
"default": "./dist/aws-utils.js"
},
"./s3": {
"types": "./dist/s3.d.ts",
"default": "./dist/s3.js"
},
"./ssm": {
"types": "./dist/ssm.d.ts",
"default": "./dist/ssm.js"
}
},
"typesVersions": {
"*": {
"s3": [
"./dist/s3.d.ts"
],
"ssm": [
"./dist/ssm.d.ts"
],
"*": [
"./dist/aws-utils.d.ts"
]
}
},
"bin": {},
"dependencies": {
"@handy-common-utils/promise-utils": "^1.6.0",
"@unbounce/parse-aws-arn": "^1.2.2"
},
"optionalDependencies": {
"@aws-sdk/client-s3": "^3.576.0",
"@aws-sdk/client-ssm": "^3.576.0",
"@aws-sdk/lib-storage": "^3.598.0",
"@aws-sdk/s3-request-presigner": "^3.576.0"
},
"bundleDependencies": [
"@unbounce/parse-aws-arn"
],
"devDependencies": {
"@handy-common-utils/dev-dependencies-mocha": "^1.5.4"
},
"volta": {
"node": "16.17.1",
"npm": "8.19.2"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/handy-common-utils/aws-utils#readme",
"repository": {
"type": "git",
"url": "https://github.com/handy-common-utils/aws-utils.git"
},
"bugs": {
"url": "https://github.com/handy-common-utils/aws-utils/issues"
},
"keywords": [
"aws",
"common",
"utils",
"utilities"
],
"author": "James Hu",
"license": "Apache-2.0"
}