-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
33 lines (33 loc) · 976 Bytes
/
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
{
"name": "@aws-crypto/material-management",
"version": "4.2.1",
"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",
"mocha": "mocha --require ts-node/register test/**/*test.ts",
"test": "npm run lint && npm run coverage",
"coverage": "nyc -e .ts npm run mocha"
},
"author": {
"name": "AWS Crypto Tools Team",
"email": "[email protected]",
"url": "https://aws.amazon.com/javascript/"
},
"license": "Apache-2.0",
"dependencies": {
"asn1.js": "^5.3.0",
"bn.js": "^5.1.1",
"tslib": "^2.2.0",
"uuid": "^10.0.0"
},
"sideEffects": false,
"main": "./build/main/src/index.js",
"module": "./build/module/src/index.js",
"types": "./build/main/src/index.d.ts",
"files": [
"build/**/src/*"
]
}