-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
40 lines (40 loc) · 1.23 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
{
"name": "@aws-crypto/integration-vectors",
"version": "2.4.0",
"scripts": {
"build": "tsc -b tsconfig.json",
"lint": "run-s lint-*",
"lint-eslint": "eslint src/*.ts test/**/*.ts",
"lint-prettier": "prettier -c src/*.ts test/**/*.ts",
"mocha": "mocha --require source-map-support/register --require ts-node/register test/*test.ts",
"test": "npm run lint && npm run build && node ./build/main/index.js && npm run mocha"
},
"dependencies": {
"@aws-crypto/material-management": "file:../material-management",
"@types/got": "^9.6.9",
"@types/stream-to-promise": "^2.2.0",
"@types/yauzl": "^2.9.1",
"got": "^11.8.0",
"stream-to-promise": "^3.0.0",
"tslib": "^1.11.1",
"yargs": "^17.0.1",
"yauzl": "^2.10.0"
},
"sideEffects": false,
"main": "./build/main/index.js",
"types": "./build/main/index.d.ts",
"files": [
"build/**/*"
],
"description": "This repository is for compatibility tests with the other versions of the AWS Encryption SDKs.",
"directories": {
"test": "test"
},
"keywords": [],
"author": {
"name": "AWS Crypto Tools Team",
"email": "[email protected]",
"url": "https://aws.amazon.com/javascript/"
},
"license": "Apache-2.0"
}