-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
52 lines (52 loc) · 1.49 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
42
43
44
45
46
47
48
49
50
51
52
{
"name": "@aws-crypto/integration-browser",
"version": "2.1.0",
"scripts": {
"build": "tsc -b tsconfig.json",
"lint": "run-s lint-*",
"lint-eslint": "eslint src/*.ts",
"lint-prettier": "prettier -c src/*.ts",
"karma": "karma start karma.conf.js",
"build_fixtures": "npx .",
"test": "npm run lint && npm run karma"
},
"author": {
"name": "AWS Crypto Tools Team",
"email": "[email protected]",
"url": "https://aws.amazon.com/javascript/"
},
"license": "Apache-2.0",
"dependencies": {
"@aws-crypto/client-browser": "file:../client-browser",
"@aws-sdk/karma-credential-loader": "3.1.0",
"@aws-sdk/util-base64-browser": "3.1.0",
"@aws-sdk/util-utf8-browser": "3.13.1",
"@trust/keyto": "^1.0.1",
"@types/got": "^9.6.9",
"@types/stream-to-promise": "^2.2.0",
"@types/yargs": "^16.0.2",
"@types/yauzl": "^2.9.1",
"got": "^11.8.0",
"jasmine-core": "^3.5.0",
"karma": "6.3.2",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^4.0.1",
"karma-json-fixtures-preprocessor": "0.0.6",
"karma-parallel": "^0.3.1",
"karma-webpack": "^4.0.2",
"stream-to-promise": "^3.0.0",
"tslib": "^2.2.0",
"webpack": "^4.42.1",
"yargs": "^15.3.1",
"yauzl": "^2.10.0"
},
"sideEffects": false,
"main": "./build/main/index.js",
"module": "./build/module/index.js",
"types": "./build/main/index.d.ts",
"bin": "./build/main/cli.js",
"files": [
"build/**/*",
"karma.conf.js"
]
}