forked from aws/aws-encryption-sdk-javascript
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1.25 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
{
"name": "@aws-crypto/kms-keyring-browser",
"version": "2.2.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 && 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"
},
"author": {
"name": "AWS Crypto Tools Team",
"email": "[email protected]",
"url": "https://github.com/aws/aws-encryption-sdk-javascript"
},
"license": "Apache-2.0",
"dependencies": {
"@aws-crypto/kms-keyring": "file:../kms-keyring",
"@aws-crypto/material-management-browser": "file:../material-management-browser",
"@aws-crypto/web-crypto-backend": "file:../web-crypto-backend",
"aws-sdk": "^2.650.0",
"tslib": "^2.2.0"
},
"sideEffects": false,
"main": "./build/main/index.js",
"module": "./build/module/index.js",
"types": "./build/main/index.d.ts",
"files": [
"build/**/*"
]
}