UNPKG

1.76 kBJSONView Raw
1{
2 "name": "@aws-sdk/signature-v4",
3 "version": "3.374.0",
4 "description": "A standalone implementation of the AWS Signature V4 request signing algorithm",
5 "main": "./dist-cjs/index.js",
6 "module": "./dist-es/index.js",
7 "types": "./dist-types/index.d.ts",
8 "scripts": {
9 "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
10 "build:cjs": "tsc -p tsconfig.cjs.json",
11 "build:es": "tsc -p tsconfig.es.json",
12 "build:include:deps": "lerna run --scope $npm_package_name --include-dependencies build",
13 "build:types": "tsc -p tsconfig.types.json",
14 "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
15 "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
16 "extract:docs": "api-extractor run --local",
17 "test": "exit 0"
18 },
19 "author": {
20 "name": "AWS SDK for JavaScript Team",
21 "url": "https://aws.amazon.com/javascript/"
22 },
23 "license": "Apache-2.0",
24 "dependencies": {
25 "@smithy/signature-v4": "^1.0.1",
26 "tslib": "^2.5.0"
27 },
28 "devDependencies": {
29 "@aws-crypto/sha256-js": "3.0.0",
30 "@aws-sdk/protocol-http": "3.374.0",
31 "@tsconfig/recommended": "1.0.1",
32 "concurrently": "7.0.0",
33 "downlevel-dts": "0.10.1",
34 "rimraf": "3.0.2",
35 "typedoc": "0.23.23",
36 "typescript": "~4.9.5"
37 },
38 "engines": {
39 "node": ">=14.0.0"
40 },
41 "typesVersions": {
42 "<4.0": {
43 "dist-types/*": [
44 "dist-types/ts3.4/*"
45 ]
46 }
47 },
48 "files": [
49 "dist-*/**"
50 ],
51 "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/packages/signature-v4",
52 "repository": {
53 "type": "git",
54 "url": "https://github.com/aws/aws-sdk-js-v3.git",
55 "directory": "packages/signature-v4"
56 },
57 "typedoc": {
58 "entryPoint": "src/index.ts"
59 }
60}