forked from awslabs/dynamodb-data-mapper-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.41 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
{
"name": "@aws/dynamodb-data-mapper-annotations",
"version": "0.7.3",
"description": "Annotations providing easy integration between TypeScript domain objects and the @aws/dynamodb-data-mapper library",
"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-data-mapper-annotations/",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"scripts": {
"build": "tsc",
"docs": "typedoc src",
"integ": "npm run pretest && jest --config=jest.integration.js",
"prepublishOnly": "npm run build",
"pretest": "tsc -p tsconfig.test.json",
"test": "jest"
},
"author": {
"name": "AWS SDK for JavaScript Team",
"email": "aws-sdk-js@amazon.com"
},
"license": "Apache-2.0",
"devDependencies": {
"@types/jest": "^23",
"@types/node": "^8.0.4",
"@types/uuid": "^3.0.0",
"aws-sdk": "^2.7.0",
"jest": "^23",
"typedoc": "^0.11.0",
"typescript": "^2.7"
},
"dependencies": {
"@aws/dynamodb-auto-marshaller": "^0.7.1",
"@aws/dynamodb-data-mapper": "^0.7.3",
"@aws/dynamodb-data-marshaller": "^0.7.3",
"reflect-metadata": "^0.1.10",
"tslib": "^1.8.1",
"uuid": "^3.0.0"
}
}