-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
41 lines (41 loc) · 1.2 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
{
"name": "@aws-crypto/sha256-universal",
"version": "5.2.0",
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsc -p tsconfig.json && tsc -p tsconfig.module.json",
"pretest": "tsc -p tsconfig.test.json",
"test": "mocha --require ts-node/register test/**/*test.ts"
},
"repository": {
"type": "git",
"url": "[email protected]:aws/aws-sdk-js-crypto-helpers.git"
},
"author": {
"name": "AWS Crypto Tools Team",
"email": "[email protected]",
"url": "https://docs.aws.amazon.com/aws-crypto-tools/index.html?id=docs_gateway#lang/en_us"
},
"homepage": "https://github.com/aws/aws-sdk-js-crypto-helpers/tree/master/packages/sha256-universal",
"license": "Apache-2.0",
"dependencies": {
"@aws-crypto/sha256-browser": "file:../sha256-browser",
"@aws-sdk/types": "~3.413.0",
"@smithy/hash-node": "^2.2.0",
"tslib": "~2.6.2"
},
"main": "./build/main/index.js",
"module": "./build/module/index.js",
"exports": {
"import": "./build/module/index.js",
"require": "./build/main/index.js"
},
"types": "./build/main/index.d.ts",
"browser": {
"@smithy/hash-node": false,
"crypto": false
},
"engines": {
"node": ">=16.0.0"
}
}