-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 862 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 862 Bytes
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
{
"name": "@mapbox/dynamodb-test",
"version": "0.7.2",
"description": "Create and destroy DynamoDB and Dynalite tables for use in tape tests",
"main": "index.js",
"scripts": {
"pretest": "eslint index.js test",
"test": "tape test/*.test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mapbox/dynamodb-test.git"
},
"keywords": [
"AWS",
"testing",
"DynamoDB",
"dynalite",
"tape"
],
"author": "Ryan Clark",
"license": "ISC",
"bugs": {
"url": "https://github.com/mapbox/dynamodb-test/issues"
},
"homepage": "https://github.com/mapbox/dynamodb-test",
"dependencies": {
"@mapbox/dyno": "^1.6.1",
"@aws-sdk/client-dynamodb": "^3.1020.0",
"dynalite": "^3.2.2",
"underscore": "^1.13.6"
},
"devDependencies": {
"eslint": "^6.8.0",
"tape": "^4.16.2"
}
}