-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.29 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
50
51
52
53
54
55
56
{
"name": "dynamodm",
"version": "1.4.1",
"description": "Simple Document mapper for DynamoDB, inspired by mongoose.",
"main": "index.js",
"scripts": {
"test": "tap run",
"lint": "./node_modules/.bin/eslint -c .eslintrc.json './{,!(node_modules)/**/}*.js' './{,!(node_modules)/**/}*.mjs'"
},
"tap": {
"show-full-coverage": true,
"allow-incomplete-coverage": true,
"coverage-report": [
"text",
"lcovonly"
],
"files": [
"test"
],
"timeout": 60000
},
"files": [
"index.js",
"lib/*"
],
"keywords": [
"dynamodb",
"dynamodb-doc-client",
"dynamo",
"document",
"mapper",
"mongoose"
],
"repository": {
"type": "git",
"url": "git+https://github.com/autopulated/dynamodm.git"
},
"bugs": {
"url": "https://github.com/autopulated/dynamodm/issues"
},
"homepage": "https://github.com/autopulated/dynamodm",
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.515.0",
"@aws-sdk/lib-dynamodb": "^3.515.0",
"abstract-logging": "^2.0.1",
"ajv": "^8.12.0",
"bson-objectid": "^2.0.4",
"pino": "^8.18.0"
},
"author": "James Crosby <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"eslint": "^8.56.0",
"tap": "^18.7.0"
}
}