-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
36 lines (36 loc) · 1.04 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
{
"name": "@aws-crypto/integration-node",
"version": "3.0.2",
"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",
"test": "npm run lint && npm run build && node ./build/main/index.js",
"integration_node": "npx ."
},
"author": {
"name": "AWS Crypto Tools Team",
"email": "[email protected]",
"url": "https://aws.amazon.com/javascript/"
},
"license": "Apache-2.0",
"dependencies": {
"@aws-crypto/client-node": "file:../client-node",
"@aws-crypto/integration-vectors": "file:../integration-vectors",
"@types/got": "^9.6.9",
"@types/stream-to-promise": "^2.2.0",
"@types/yargs": "^17.0.2",
"got": "^11.8.0",
"stream-to-promise": "^3.0.0",
"tslib": "^2.3.0",
"yargs": "^17.1.0"
},
"sideEffects": false,
"main": "./build/main/src/index.js",
"types": "./build/main/src/index.d.ts",
"bin": "./build/main/src/cli.js",
"files": [
"build/**/src/*"
]
}