forked from aws/aws-encryption-sdk-javascript
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 2.03 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
53
{
"name": "@aws-crypto/example-browser",
"version": "1.1.0",
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsc -b tsconfig.json && tsc -b tsconfig.module.json",
"lint": "standard 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"
},
"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-browser": "0.1.0-preview.1",
"tslib": "^1.9.3",
"@aws-sdk/util-base64-browser": "1.0.0-alpha.2",
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.5",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"chai": "^4.1.2",
"karma": "^4.1.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "^2.0.4",
"karma-mocha": "^1.3.0",
"karma-webpack": "^3.0.5",
"mocha": "^5.2.0",
"nyc": "^14.0.0",
"standard": "^12.0.1",
"ts-loader": "^5.3.3",
"ts-node": "^7.0.1",
"typescript": "^3.5.0",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.11"
},
"devDependencies": {},
"main": "./build/main/index.js",
"module": "./build/module/index.js",
"types": "./build/main/index.d.ts"
}