forked from aws/aws-sdk-js-crypto-helpers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.17 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
{
"name": "@aws-crypto/random-source-universal",
"version": "0.1.0-preview.1",
"scripts": {
"prepublishOnly": "tsc",
"pretest": "tsc -p tsconfig.test.json",
"test": "mocha --require ts-node/register test/**/*test.ts"
},
"repository": {
"type": "git",
"url": "[email protected]:aws/aws-javascript-crypto-helpers.git"
},
"author": {
"name": "AWS Crypto Tools Team",
"email": "[email protected]",
"url": "https://docs.aws.amazon.com/aws-crypto-tools/index.html?id=docs_gateway#lang/en_us"
},
"license": "Apache-2.0",
"dependencies": {
"@aws-crypto/random-source-browser": "^0.1.0-preview.1",
"@aws-crypto/random-source-node": "^0.1.0-preview.1",
"@aws-sdk/types": "^0.1.0-preview.1",
"tslib": "^1.9.3"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.5",
"@types/node": "^7.0.12",
"@types/sinon": "^5.0.2",
"chai": "^4.1.2",
"mocha": "^5.2.0",
"nyc": "^13.0.1",
"sinon": "^6.3.4",
"ts-node": "^7.0.1",
"typescript": "^3.0.1"
},
"browser": {
"@aws/crypto-random-source-node": false
},
"main": "./build/index.js",
"types": "./build/index.d.ts"
}