forked from awslabs/dynamodb-data-mapper-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.13 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
{
"name": "@aws/dynamodb-auto-marshaller",
"version": "0.7.1",
"description": "A data marshaller that converts JavaScript types into Amazon DynamoDB AttributeValues",
"keywords": [
"aws",
"dynamodb"
],
"repository": {
"type": "git",
"url": "git+https://github.com/awslabs/dynamodb-data-mapper-js.git"
},
"bugs": {
"url": "https://github.com/awslabs/dynamodb-data-mapper-js/issues"
},
"homepage": "https://awslabs.github.io/dynamodb-data-mapper-js/packages/dynamodb-auto-marshaller/",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"scripts": {
"docs": "typedoc src",
"prepublishOnly": "tsc",
"pretest": "tsc -p tsconfig.test.json",
"test": "jest \"build/(.+).spec.js\""
},
"author": {
"name": "AWS SDK for JavaScript Team",
"email": "aws-sdk-js@amazon.com"
},
"license": "Apache-2.0",
"devDependencies": {
"@types/jest": "^24",
"@types/node": "^8.0.4",
"aws-sdk": "^2.7.0",
"jest": "^24",
"typedoc": "^0.14.0",
"typescript": "^3.4"
},
"peerDependencies": {
"aws-sdk": "^2.7.0"
},
"dependencies": {
"tslib": "^1.9"
}
}