-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
48 lines (48 loc) · 1.95 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
{
"name": "@aws-crypto/example-browser",
"version": "4.1.0",
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsc -b tsconfig.json && tsc -b tsconfig.module.json",
"lint": "run-s lint-*",
"lint-eslint": "eslint src/*.ts test/**/*.ts",
"lint-prettier": "prettier -c src/*.ts test/**/*.ts",
"karma": "karma start karma.conf.js",
"test": "npm run lint && npm run coverage",
"coverage": "npm run karma && nyc report --exclude-after-remap false -t .karma_output --check-coverage",
"example-rsa": "webpack -d --config webpack_configs/rsa.webpack.config.js",
"example-aes": "webpack -d --config webpack_configs/aes.webpack.config.js",
"example-kms": "webpack -d --config webpack_configs/kms.webpack.config.js",
"example-multi-keyring": "webpack -d --config webpack_configs/multi_keyring.webpack.config.js",
"example-caching-cmm": "webpack -d --config webpack_configs/caching_cmm.webpack.config.js",
"example-fallback": "webpack -d --config webpack_configs/fallback.webpack.config.js",
"example-disable-commitment": "webpack -d --config webpack_configs/disable_commitment.webpack.config.js"
},
"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/util-base64": "^3.374.0",
"@types/chai": "^4.2.11",
"chai": "^4.2.0",
"karma": "^6.3.17",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-mocha": "2.0.1",
"karma-webpack": "^5.0.0",
"ts-loader": "9.5.2",
"ts-node": "^10.2.1",
"tslib": "^2.2.0",
"typescript": "^4.0.2",
"webpack": "^5.42.0",
"webpack-cli": "4.6.0"
},
"main": "./build/main/src/index.js",
"module": "./build/module/src/index.js",
"types": "./build/main/index.d.ts"
}