-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
39 lines (39 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
{
"name": "@aws-crypto/integration-node",
"version": "4.1.0",
"scripts": {
"prepublishOnly": "npm run generate-version.ts; npm run build",
"generate-version.ts": "npx genversion --es6 src/version.ts",
"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.1",
"got": "^11.8.0",
"stream-to-promise": "^3.0.0",
"tslib": "^2.3.0",
"yargs": "^17.0.1",
"yazl": "^3.3.1"
},
"sideEffects": false,
"main": "./build/main/src/index.js",
"types": "./build/main/src/index.d.ts",
"bin": "./build/main/src/cli.js",
"files": [
"build/**/src/*"
]
}